/* Custom Search Header Element Styles */
.suki-header-custom-search {
    display: flex;
    align-items: center;
    gap: 24px;
}
.custom-header-search-form .search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.custom-header-search-form .search-submit-btn {
    background-color: #007BA7;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}
.custom-header-search-form .search-submit-btn:hover {
    background-color: #005a7b;
}
.custom-header-search-form .search-submit-btn svg {
    display: block;
}
.custom-header-search-form .custom-search-field {
    border: 1px solid #007BA7 !important;
    border-radius: 25px !important;
    padding: 8px 16px !important;
    height: 40px !important;
    width: 250px !important;
    font-family: inherit;
    font-size: 14px;
    color: #333333;
    outline: none;
    background-color: #ffffff;
    box-sizing: border-box;
}
.custom-header-search-form .custom-search-field::placeholder {
    color: #a0aec0;
}
.header-utility-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.utility-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease-in-out;
}
.utility-icon-link:hover {
    opacity: 0.8;
}
.utility-icon-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}
.utility-location-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #1a1a1a;
    font-family: inherit;
    white-space: nowrap;
    text-transform: none !important; /* Prevent uppercase transformation */
}
.utility-location-wrapper .location-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.utility-location-wrapper .location-text {
    line-height: 1.2;
    text-transform: none !important; /* Prevent uppercase transformation */
}
.utility-location-wrapper .location-status {
    font-weight: 700;
    text-decoration: underline;
    color: #000000;
}
