
.champs-flex {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.bloc-section {
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 16px;
}

.error-message {
    font-size: 0.9em;
    color: #e74c3c;
}

/* #overlay-timer {
    display: none;
    opacity: 0;
    width: 0.1;
    height: 0.1;
} */

.flex {
    display: flex;
}

.spinner-loader {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e3e3e3;
    border-top: 2px solid #036;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styles pour les inputs de fichiers personnalisés */
.button.alt {
    color: #036 !important;
}

.button.alt:disabled {
    color: #999 !important;
}

.file-name {
    font-style: italic;
    margin-left: 6px;
    color: #666;
}

.zip-info-note {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 5px;
}

.files-status {
    margin-top: 10px;
}

.files-status.error {
    color: #6e1e15;
    font-weight: bold;
}

.files-status.success {
    color: #155b32;
    font-weight: bold;
}

.files-status.info {
    color: #145682;
    font-weight: bold;
}

.zip-buttons-container {
    margin-top: 20px;
}

.delete-zip-button {
    margin-left: 10px;
}
