:root {
    --odoo-purple: #f19267;
    --odoo-orange: #e66b13; /* Nouvel orange Odoo */
    --odoo-light-bg: #f8f9fa;
}

body {
    background-color: var(--odoo-light-bg);
    font-family: 'Inter', -apple-system, sans-serif;
}

.main-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: 50px;
    background-color: white; /* Fond blanc pour la carte */
}

.card-header {
    /* Remplacement du Teal par l'Orange dans le dégradé */
    background: linear-gradient(135deg, var(--odoo-purple) 0%, var(--odoo-orange) 100%);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    padding: 2rem;
}

.card-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}

/* On change aussi la bordure de la boîte d'instruction pour l'orange */
.instruction-box {
    background-color: #fdf5f0; /* Un fond très légèrement orangé */
    border-left: 4px solid var(--odoo-orange);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.loading-title {
    color: var(--odoo-orange) !important;
}

/* Le reste de votre CSS (boutons, etc.) reste inchangé */
.btn-odoo-primary {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-odoo-primary:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

.btn-odoo-secondary {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-odoo-secondary:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

.form-label {
    color: #0066cc;
    font-weight: 700;
}

.file-name-display {
    color: #28a745;
    font-weight: bold;
    font-size: 22px;
    margin-top: 12px;
    margin-bottom: 15px;
}

.instruction-box {
    background-color: #e9ecef;
    border-left: 4px solid var(--odoo-teal);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

/* Zone d'erreurs */
.error-window {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
}

/* Spinner de chargement */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}