/* College Autocomplete Styles */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f9f9f9;
}

.autocomplete-item-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 15px;
    object-fit: cover;
    background-color: #f0f0f0; /* Placeholder background */
}

.autocomplete-item-content {
    flex: 1;
}

.autocomplete-item-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #222;
}

.autocomplete-item-description {
    font-size: 12px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.autocomplete-no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

/* Make sure search input is properly positioned */
.nav-search-inner {
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .autocomplete-results {
        max-height: 300px;
    }
    
    .autocomplete-item {
        padding: 8px 12px;
    }
    
    .autocomplete-item-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .autocomplete-item-description {
        display: none; /* Hide description on small screens */
    }
}
