/* ==========================================================================
   Venue Auto-complete
   ========================================================================== */

.dropdown-menu.show {
    display: block;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #dee2e6;
    z-index: 1050;
}

.dropdown-menu .dropdown-item {
    cursor: pointer;
    padding: 8px 12px;
    transition: background-color 0.15s ease-in-out;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #212529;
}

.dropdown-menu .dropdown-item .badge {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.position-relative {
    position: relative;
}

/* Dark theme support */
html:not([data-theme="light"]) .dropdown-menu {
    background-color: #2d3748;
    border-color: #4a5568;
}

html:not([data-theme="light"]) .dropdown-menu .dropdown-item {
    color: #e2e8f0;
}

html:not([data-theme="light"]) .dropdown-menu .dropdown-item:hover,
html:not([data-theme="light"]) .dropdown-menu .dropdown-item:focus {
    background-color: #4a5568;
    color: #ffffff;
}
