.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    background-color: var(--color-dropdow-btn-bg);
    color: var(--color-dropdow-btn-text);
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
    .dropdown-button:hover {
        background-color: var(--color-dropdow-btn-bg-hover);
    }

.dropdown-arrow {
    font-size: 12px; /* Taille de la flèche */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-dropdow-option-bg);
    color: var(--color-dropdow-option-text);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}


.dropdown-content-right {
    right: 0;
    left: auto;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        background-color:inherit;
        color:inherit;
    }

        .dropdown-content a:hover {
            background-color: var(--color-dropdow-option-bg-hover);
        }

.dropdown:hover .dropdown-content {
    display: block;
}






input[type="file"] {
    display: none;
}


.custom-file-label {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 10px 20px; /* Espace autour du texte */
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
}

    
    .custom-file-label:hover {
        background-color: #f4f4f4;
    }

    
    .custom-file-label:active {
        background-color: #e0e0e0;
    }
