/**
 * Global fixes for DZ Life
 * 1. Ensure uicons-regular-straight icon font is used for icons
 * 2. Remove search icon hover background
 * 3. Reduce search bar border highlighting
 */

/* 1. Ensure uicons icon elements use the regular straight style */
i[class*="fi-"], .fi {
    font-family: 'uicons-regular-straight' !important;
}

/* 2. Remove search icon hover background and animations */
.search-style-2 form button:hover {
    background-color: transparent !important;
    transform: translateY(-50%) !important;
    transition: none !important;
}

.search-style-2 form button {
    background-color: transparent !important;
    transition: none !important;
}

.search-style-2 form button:focus {
    background-color: transparent !important;
    outline: none !important;
}

/* 4. Reduce/remove search bar border highlighting */
.search-style-2 form input {
    border-color: #e0e0e0 !important;
    border-width: 0 0 1px 0 !important;
}

.search-style-2 form input:focus {
    border-color: #cccccc !important;
    border-width: 0 0 1px 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-style-2 form input:hover {
    border-color: #e0e0e0 !important;
}
