/**
 * SUPPORT-COMPTA | Main Stylesheet
 * Styles centralisés pour tout le projet
 */

/* ========== VARIABLES CSS ========== */
:root {
    --primary-color: #003B7B;
    --primary-dark: #002952;
    --secondary-color: #5CAADD;
    --secondary-light: #8BC3E8;
    --background-color: #F4F4F4;
    --text-color: #333;
    --text-light: #666;
    --border-color: #d0d0d0;
    --error-color: #d9534f;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --border-radius: 4px;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* ========== LAYOUT STRUCTURE ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.container-xs {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    flex-shrink: 0;
    z-index: 100;
}

main {
    flex: 1;
    width: 100%;
}

footer {
    flex-shrink: 0;
    width: 100%;
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

/* ========== HEADER ========== */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    border-bottom: 3px solid var(--secondary-color);
    width: 100%;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-logo {
    flex: 1;
    min-width: 200px;
}

.header-logo h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

.header-logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo a:hover {
    color: var(--secondary-light);
}

.header-logo p {
    margin: 5px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

header .header-nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

header nav a:hover {
    background-color: rgba(92, 170, 221, 0.2);
    color: var(--secondary-light);
}

.header-user {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.header-user-info > div:first-child {
    font-weight: 600;
    font-size: 14px;
}

.header-user-role {
    font-size: 11px;
    background-color: rgba(217, 83, 79, 0.8);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: bold;
}

.nav-lang {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-lang a {
    color: white;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-lang a:hover {
    background-color: var(--secondary-color);
    border-color: white;
}

.nav-lang a.active {
    background-color: var(--secondary-color);
    border-color: white;
    font-weight: bold;
}

.btn-text {
    background-color: rgba(217, 83, 79, 0.8) !important;
    color: white !important;
    border-color: white !important;
}

.btn-text:hover {
    background-color: var(--error-color) !important;
}

/* ========== MAIN CONTENT ========== */
main {
    background-color: white;
    padding: 30px 0;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
    width: 100%;
}

/* ========== NAVBAR / MENU ========== */
.navbar {
    padding: 15px 0;
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
}

.lang-btn:hover {
    background-color: var(--secondary-light);
    color: white;
    border-color: var(--secondary-color);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: bold;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-name {
    font-weight: 600;
    color: var(--primary-color);
}

.user-role {
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: bold;
}

.user-role.admin-badge {
    background-color: var(--error-color);
    color: white;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* ========== BUTTONS ========== */
.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    user-select: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: #e0e0e0;
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger {
    background-color: var(--error-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-info {
    background-color: var(--info-color);
    color: white;
}

.btn-info:hover {
    background-color: #138496;
}

.btn-logout {
    background-color: var(--error-color);
    color: white;
}

.btn-logout:hover {
    background-color: #c82333;
}

.btn-edit {
    background-color: var(--info-color);
    color: white;
}

.btn-edit:hover {
    background-color: #138496;
}

.btn-delete {
    background-color: var(--error-color);
    color: white;
}

.btn-delete:hover {
    background-color: #c82333;
}

.btn-small {
    padding: 6px 10px;
    font-size: 11px;
    text-decoration: none;
}

.btn-warning {
    background-color: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background-color: #e0a800;
}

/* ========== BADGES ========== */
.badge-type-invoice {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.badge-type-credit-note {
    display: inline-block;
    background-color: var(--error-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.amount-credit {
    color: var(--error-color) !important;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
    appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(92, 170, 221, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="file"] {
    padding: 8px;
    cursor: pointer;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

/* ========== CARDS / CONTAINERS ========== */
.card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 100%;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 8px 8px 0 0;
    background-color: rgba(92, 170, 221, 0.05);
}

.card-body {
    margin-bottom: 0;
}

.card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.card-footer button,
.card-footer a {
    flex-shrink: 0;
}

/* ========== STAT CARDS (Dashboard) ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

/* ========== TABLES ========== */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: 6px;
    overflow: hidden;
}

thead {
    background-color: var(--primary-color);
    color: white;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    white-space: nowrap;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

tbody tr {
    transition: var(--transition);
}

tbody tr:hover {
    background-color: rgba(92, 170, 221, 0.05);
}

tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.table-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.table-actions a,
.table-actions button {
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
}

/* ========== MESSAGES / ALERTS ========== */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid;
}

.alert-success {
    background-color: #f3fff3;
    color: #155724;
    border-left-color: var(--success-color);
}

.alert-error,
.alert-danger {
    background-color: #fff3f3;
    color: #721c24;
    border-left-color: var(--error-color);
}

.alert-warning {
    background-color: #fff8e1;
    color: #856404;
    border-left-color: var(--warning-color);
}

.alert-info {
    background-color: #f0f7ff;
    color: #004085;
    border-left-color: var(--info-color);
}

/* ========== STATUS BADGES ========== */
.status {
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.status-draft {
    background-color: #f0f0f0;
    color: #666;
}

.status-sent {
    background-color: #fff3cd;
    color: #856404;
}

.status-paid {
    background-color: #d4edda;
    color: #155724;
}

/* ========== LOGIN PAGE ========== */
body.login-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.login-page main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body.login-page header {
    box-shadow: none;
}

.card {
    max-width: 100%;
}

.card.login-card {
    width: 100%;
    max-width: 420px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card.login-card .card-header {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.card.login-card .card-body {
    margin-bottom: 0;
}

.demo-info {
    background-color: var(--background-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 13px;
    border-left: 4px solid var(--info-color);
}

.demo-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.demo-info br {
    display: block;
    content: '';
    margin: 5px 0;
}

/* ========== INVOICE FORM ========== */
.invoice-form {
    max-width: 1000px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.invoice-lines-table {
    margin: 20px 0;
}

.invoice-summary {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 18px;
}

.summary-label {
    font-weight: 600;
}

.summary-value {
    text-align: right;
}

/* ========== DELETE CONFIRMATION ========== */
.delete-container {
    max-width: 600px;
    margin: 50px auto;
}

.delete-warning {
    background-color: #fff3f3;
    border-left: 4px solid var(--error-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.delete-details {
    background-color: white;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.delete-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    width: 100%;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

footer strong {
    font-weight: 600;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    header .container {
        gap: 15px;
    }

    .header-logo {
        min-width: auto;
    }

    .header-logo h1 {
        font-size: 24px;
    }

    header .header-nav {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-logo {
        width: 100%;
        min-width: auto;
    }

    .header-logo h1 {
        font-size: 22px;
    }

    .header-logo p {
        display: none;
    }

    header .header-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        min-width: auto;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    header nav a {
        display: block;
        width: 100%;
        padding: 10px;
    }

    .header-user {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .header-user-info {
        align-items: flex-start;
        width: 100%;
    }

    .header-user-info > div:first-child {
        width: 100%;
    }

    .nav-lang {
        flex-wrap: wrap;
        width: 100%;
        gap: 5px;
    }

    .nav-lang a {
        flex: 1;
        text-align: center;
        padding: 8px 5px;
        font-size: 11px;
        min-width: 45px;
    }

    .page-title {
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 13px;
    }

    th, td {
        padding: 10px;
    }

    .table-actions {
        flex-direction: column;
    }

    .table-actions a,
    .table-actions button {
        width: 100%;
    }

    .login-box {
        padding: 30px 20px;
        width: 100%;
        max-width: none;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    header .container {
        gap: 10px;
    }

    .header-logo h1 {
        font-size: 18px;
    }

    .header-user-info > div:first-child {
        font-size: 12px;
    }

    .nav-lang {
        gap: 3px;
    }

    .nav-lang a {
        padding: 6px 3px;
        font-size: 10px;
        min-width: 40px;
    }

    .page-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        font-size: 13px;
    }

    input, select, textarea {
        font-size: 16px;
        padding: 8px;
    }

    .card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .card-header {
        font-size: 16px;
    }

    .btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .table-actions {
        gap: 4px;
    }

    .table-actions a,
    .table-actions button {
        padding: 5px 8px;
        font-size: 11px;
    }

    .login-box {
        padding: 25px 15px;
    }

    .form-row {
        gap: 10px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .header,
    .footer,
    .btn,
    .table-actions {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .main-content {
        padding: 0;
        background-color: white;
    }
}

/* ============================================================================
   SUPPORT-COMPTA | CSS pour l'impression (print)
   À intégrer dans main.css
   ============================================================================ */

/* Styles d'impression */
@media print {
    /* Masquer les éléments non nécessaires à l'impression */
    .btn, button, .form-actions, .form-group input[type="button"],
    .form-group input[type="submit"], .menu, .navbar, .sidebar {
        display: none !important;
    }
    
    /* Optimiser le contenu pour l'impression */
    body {
        background: white;
        color: black;
        font-size: 11pt;
    }
    
    .container {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
        margin-top: 10pt;
        margin-bottom: 5pt;
    }
    
    .invoice-form {
        width: 100%;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10pt;
        margin-bottom: 10pt;
        page-break-inside: avoid;
    }
    
    .form-group {
        margin-bottom: 5pt;
    }
    
    label {
        font-weight: bold;
        font-size: 10pt;
    }
    
    input, select {
        border: 1px solid #ccc;
        padding: 3pt;
        font-size: 10pt;
    }
    
    /* Table des lignes */
    .invoice-lines-table {
        width: 100%;
        border-collapse: collapse;
        margin: 15pt 0;
        page-break-inside: avoid;
    }
    
    .invoice-lines-table thead {
        background-color: #f0f0f0;
        font-weight: bold;
    }
    
    .invoice-lines-table th {
        border: 1px solid #000;
        padding: 5pt;
        text-align: left;
        font-size: 10pt;
    }
    
    .invoice-lines-table td {
        border: 1px solid #ccc;
        padding: 5pt;
        font-size: 9pt;
    }
    
    /* Cellules de montants */
    .amount-ht, .amount-vat, .amount-ttc {
        text-align: right;
        font-weight: bold;
    }
    
    /* Résumé */
    .invoice-summary {
        margin-top: 15pt;
        padding: 10pt;
        border: 2pt solid #003B7B;
        background-color: #f9f9f9;
        page-break-inside: avoid;
        text-align: right;
    }
    
    .invoice-summary h3 {
        margin-top: 0;
    }
    
    .invoice-summary p {
        margin: 5pt 0;
        font-size: 11pt;
    }
    
    .invoice-summary strong {
        font-weight: bold;
        font-size: 12pt;
        color: #003B7B;
    }
    
    /* Sauts de page */
    .page-break {
        page-break-after: always;
    }
    
    /* Réduire les espacements */
    margin, padding {
        page-break-inside: avoid;
    }
}

/* Styles pour le bouton "Imprimer" (avant impression) */
.btn.print-btn {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.btn.print-btn:hover {
    background-color: #218838;
}

/* En mode édition, afficher les champs */
@media screen {
    input, select, textarea {
        background-color: white;
        color: black;
        border: 1px solid #ddd;
    }
    
    input:disabled, select:disabled {
        background-color: #f5f5f5;
        color: #999;
        cursor: not-allowed;
    }
}
