/* Modern FiboSearch Custom Styling - Suffix: a6fd8c65 */

/* Container & Input Modernization */
.dgwt-wcas-search-wrapp {
    max-width: 100% !important;
}

.dgwt-wcas-sf-registrer .dgwt-wcas-search-input,
.dgwt-wcas-search-form .dgwt-wcas-search-input {
    border: 2px solid #e2e8f0 !important;
    border-radius: 50px !important; /* Rounded pill style */
    padding: 12px 24px 12px 50px !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(21, 69, 189, 0.04) !important; /* Soft brand-colored shadow */
    background-color: #ffffff !important;
}

/* Focus state with brand blue glow */
.dgwt-wcas-sf-registrer .dgwt-wcas-search-input:focus,
.dgwt-wcas-search-form .dgwt-wcas-search-input:focus {
    border-color: #1545BD !important; /* Brand Royal Blue */
    box-shadow: 0 0 0 4px rgba(21, 69, 189, 0.15) !important;
    outline: none !important;
}

/* Icon customization to Brand Blue */
.dgwt-wcas-search-form .dgwt-wcas-ico-magnifier,
.dgwt-wcas-search-wrapp .dgwt-wcas-ico-magnifier {
    fill: #1545BD !important; /* Brand Blue fill */
    color: #1545BD !important;
    left: 20px !important;
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.3s ease !important;
}

.dgwt-wcas-search-input:focus + .dgwt-wcas-ico-magnifier,
.dgwt-wcas-search-input:focus ~ .dgwt-wcas-ico-magnifier {
    transform: scale(1.1);
}

/* Autocomplete Suggestion Dropdown Styling */
.dgwt-wcas-suggestions-wrapp {
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px -5px rgba(21, 69, 189, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    margin-top: 8px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.dgwt-wcas-suggestion {
    padding: 12px 16px !important;
    transition: background-color 0.2s ease !important;
}

/* Highlight item on hover/selected - Subtle brand light blue tint */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-selected,
.dgwt-wcas-suggestion:hover {
    background-color: #f4f7ff !important;
}

/* Highlighting the matching search text in Brand Accent Green for perfect contrast */
.dgwt-wcas-suggestion .dgwt-wcas-st-more a,
.dgwt-wcas-suggestions-wrapp mark {
    background-color: rgba(97, 206, 112, 0.15) !important; /* Accent Green backdrop */
    color: #0b801a !important; /* Contrast Green text */
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

/* Submit button (if present) customization to Brand Blue & hover to darker tint */
.dgwt-wcas-search-submit {
    background-color: #1545BD !important;
    color: #ffffff !important;
    border-radius: 0 50px 50px 0 !important;
    transition: background-color 0.2s ease !important;
}

.dgwt-wcas-search-submit:hover {
    background-color: #0d318f !important;
}
