/* Container Utama */
.custom-dropdown {
    position: relative;
    width: 100%;
}

/* Input Box (Tempat ngetik & milih) */
.dropdown-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary, #ccc);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.dropdown-input:focus {
    border-color: var(--primary);
}

/* Panel Daftar Opsi */
.dropdown-panel {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none; /* Sembunyi dulu */
    z-index: 99;
    padding: 8px 0;
    max-height: 250px;
    overflow-y: auto;
}

/* Item di dalam list */
.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:hover {
    background-color: var(--secondary, #f0f0f0);
}

/* Tanda Centang untuk yang terpilih */
.dropdown-item.selected {
    color: var(--primary);
    font-weight: bold;
}

.dropdown-item.selected::after {
    content: '✓';
    color: var(--primary);
}

/* Menampilkan Panel */
.dropdown-panel.show {
    display: block;
}