/* Fichier inchangé (copié depuis ton style.css original) – déplacer simplement l'ancien.
   Tu peux l’enrichir plus tard si besoin. */
   body {
    font-family: Arial, sans-serif;
    background-color: #c6ede3;
    margin: 0;
    padding: 0;
}
.container {
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #0fd3a0; 
}
h1 {
    text-align: center;
    color: #0033a0;
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}
h1::after {
    content: "";
    display: block;
    width: 600px;
    height: 1.5px;
    background: #0fd3a0;
    margin: 12px auto 0 auto;
    border-radius: 2px;
}
form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #005177;
}
form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 16px;
}
form button {
    background-color: #0033a0;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
form button:hover {
    background-color: #1e7de4;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}    
table th, table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
table th {
    background-color: #f0f0f0;
    font-weight: bold;
}
a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #0033a0;
}
a:hover {
    text-decoration: underline;
}
.montant {
    text-align: right;
    padding-right: 10px;
}
.total-ttc {
    color: #0033a0;
    font-weight: bold;
}
@media (max-width: 600px) {
    .container { padding: 15px; }
    form input, form select, form button { font-size: 14px; padding: 8px; }
    table th, table td { font-size: 14px; padding: 8px; }
    h1 { font-size: 20px; }
}
.btn-blue {
    display: inline-block;
    padding: 10px 22px;
    background: #0033a0;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    border: none;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.08);
}
.btn-blue:hover {
    background: #1565c0;
}