/* Main Styles */

/* Search Results Styling */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-loading {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.list-group-item.active {
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Highlight matching text */
.list-group-item strong {
    color: #0d6efd;
    font-weight: 600;
}