/* Navbar Search */
#navbarSearchForm .input-group {
    width: 200px;
/*    transition: width 0.3s;*/
}

/*    #navbarSearchForm .input-group:focus-within {
        width: 300px;
    }*/

#navbarSearchForm .form-control {
    border-color: #dee2e6; /* Light gray border */
    background-color: white;
    color: #495057; /* Dark gray text */
    border-radius: 0.25rem 0 0 0.25rem;
}

    #navbarSearchForm .form-control::placeholder {
        color: #6c757d; /* Medium gray placeholder */
    }

#navbarSearchForm .btn {
    border-color: #dee2e6;
    background-color: #f8f9fa; /* Light gray background */
    color: #495057; /* Dark gray icon */
    border-radius: 0 0.25rem 0.25rem 0;
    border-left: none;
}

    #navbarSearchForm .btn:hover {
        background-color: #e9ecef; /* Slightly darker gray on hover */
        color: #212529; /* Darker icon on hover */
    }


/* Search Modal */
#searchResultsModal .modal-content {
    border-radius: 0.5rem;
    overflow: hidden;
}

#searchResultsModal .modal-header {
    padding: 1rem 1.5rem;
}

#searchResultsModal .modal-body {
    padding: 1.5rem;
}

/* Search Results Card - Modern Design */
..search-result-card {
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.2);
}

.card-title {
    font-size: 0.95rem;
    color: #2e7d32;
}

.text-muted {
    font-size: 0.8rem;
}

/* Simple hover effect on arrow */
.search-result-card:hover .bi-arrow-right-short {
    transform: translateX(3px);
}

.bi-arrow-right-short {
    transition: transform 0.2s ease;
}