/* devis-factures.css — mise en page de devis-factures.php */

:root {
    --color-bg-light: #f8f9fa;
    --border: #dee2e6;
}

body {
    margin: 0;
    background: #f4f5f7;
    font-family: Arial, sans-serif;
}

.btn-primary {
    background: #1a3d6b;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
}
.btn-primary:hover { background: #142f53; }

.btn-secondary {
    color: #1a3d6b;
    text-decoration: underline;
    font-size: 0.9rem;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.admin-header h1 {
    margin: 0;
    font-size: 1.3rem;
    color: #1a3d6b;
}

#onglets-devis-factures {
    max-width: 1400px;
    margin: 24px auto;
    padding: 0 24px;
    background: #ffffff;
    border-radius: 8px;
}

.avertissement-champ {
    background: #fff8e1;
    border: 1px solid #f0b400;
    border-radius: 6px;
    padding: 10px 14px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: #6b5300;
}
