﻿.drop-zone {
    display: flex;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    height: 190px;
    width: 240px;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: var(--color-DropZone-text);
    border-color: var(--color-DropZone-border-text);
    background-color: var(--color-DropZone-bg);
}

    .drop-zone.hover {
        border-color: var(--color-DropZone-border-text);
        background-color: var(--color-DropZone-bg-hover);
    }

/* Cacher l'input de type file natif */
.custom-file-input {
    position: relative;
    overflow: hidden;
    width: 200px; /* Largeur personnalisée */
    height: 50px; /* Hauteur personnalisée */
    opacity: 0;
    cursor: pointer;
}

    /* Ajouter un style au conteneur parent */
    .custom-file-input::file-selector-button {
        font-size: inherit;
        background-color: var(--color-primary, #007bff);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
    }

        /* Style du bouton au survol */
        .custom-file-input::file-selector-button:hover {
            background-color: var(--color-primary-dark, #0056b3);
        }
