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; /* Réduction de la taille du titre */
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

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; /* Aligne le texte à droite */
    padding-right: 10px; /* Ajoute un espace entre le texte et le bord */
}

.total-ttc {
    color: #0033a0; /* Bleu */
    font-weight: bold;
}

/* Responsive design */
@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;
    }
}