/* Estructura general del ítem del nav - Tema Navideño */
.nav-item.dropdown-responsive {
    position: relative;
    list-style: none;
}

/* Botón estilo */
.dropdown-toggle-btn {
    background-color: transparent;
    color: black; /* texto negro */
    border: none;
    font-size: 15.02px;
    cursor: pointer;
    padding: 6px 1px;
    width: 100%;
    text-align: left;
}

/* Menú oculto inicialmente */
.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #165a43;
    color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 92, 5, 0.3);
    min-width: 180px;
    z-index: 1000;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #00000000;
}

/* Ítems del menú */
.dropdown-menu-custom li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: rgb(255, 255, 255); /* texto blanco */
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu-custom li a:hover {
    background-color: #0a3a2a;
    color: #d4af37;
}

/* Responsive para celulares */
@media (max-width: 768px) {
    .dropdown-toggle-btn {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
        font-size: 16px;
        border-top: 1px solid #ddd;
    }

    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background-color: #0a3a2a;
        border: none;
        border-top: 1px solid #1aff0018;
    }

    .dropdown-menu-custom li a {
        padding: 12px 18px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .dropdown-menu-custom li a:hover {
        background-color: #165a43;
        color: #d4af37;
    }
}