.dropdown-bottom-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    background: var(--bg-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -3px 12px var(--shadow-color);
    overflow-y: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
    z-index: 9999;
    top: 400px;
}

.dropdown-bottom-container.active {
    max-height: 60vh;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
}

.dropdown-bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 7px;
    height: 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: var(--text-gras);
    background-color: var(--navrigt-primary-bg);
}

.bottom-option {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--taille-text-pc);
    padding: 10px 14px;
  
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
    transition: background-color 0.2s ease;
    background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.close-bottom {
    background: none;
    border: none;
    font-size: var(--taille-icon-pc);
    cursor: pointer;
}

.dropdown-bottom-content {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-bottom-trigger {
    margin-top: 2px;
    margin-left: 10px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-bottom-trigger:hover {
    transform: scale(1.2);
    color: var(--text-color);
}

/* Cache le panneau sur grand écran */
@media (min-width: 768px) {
    
    .close-bottom {
         
            font-size: var(--taille-icon-mo);
        }
                .bottom-option {
                   
                    font-size: var(--taille-text-mo);
                   
                }
}

