@import url('https://fonts.googleapis.com/css2?family=Kodchasan:wght@400;700&display=swap');

body {
    font-family: 'Kodchasan', sans-serif;
    color: #15232B;
    background-color: rgb(243, 243, 243);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-left: 20px;
}

.title {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-size: 24px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-button {
    background-color: #DF2B6C;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.nav-button:hover {
    background-color: #DF2B6C;
}

.header-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.header-form div {
    flex: 1;
    margin: 0 10px;
}

.header-form label {
    margin-right: 10px;
}

.header-form input[type="text"] {
    width: 350px;
    padding: 5px;
    box-sizing: border-box;
}

form {
    width: 65%;
    background-color: white;
    padding: 20px;
    margin: 10px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form p {
    color: rgb(0, 0, 0);
    font-size: medium;
    text-align: center;
}

h1 {
    color: #DF2B6C;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

h2 {
    color: #DF2B6C;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

h3 {
    color: #DF2B6C;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 30px;
    font-size: 24px;
}

.pdf-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.colonne {
    width: 40%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.colonne:nth-child(2) {
    margin-left: 5%;
}

.field-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1px;
}

.field-group label {
    flex: 1;
    margin-right: 10px;
    text-align: left;
}

.field-group input[type="number"] {
    width: 50px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #15232B;
    text-align: center;
    -moz-appearance: textfield;
}

.field-group input[type="number"]::-webkit-outer-spin-button,
.field-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.synthese {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    text-align: left;
    width: 100%;
}

.synthese .colonne-synthese {
    width: 30%;
    align-items: left;
    margin-left: 25px;
}

.synthese .colonne-maintenance
{
    width: 40%;
    align-items: left;
    margin-left: 1px;
}

.synthese .colonne-telecharger {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.synthese .colonne-synthese p {
    margin: 5px 0;
    font-size: 18px;
    text-align: left;
    color: #15232B;
}
.synthese .colonne-maintenance p {
    margin: 5px 0;
    font-size: 18px;
    text-align: left;
    color: #15232B;;
}

.footer-text {
    text-align: center;
    font-size: 14px;
    color: #15232B;;
    margin-top: 10px;
}

#output {
    margin-top: 20px;
    text-align: center;
    font-size: 1.5em;
    color: #15232B;
}

button {
    background-color: #DF2B6C;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
}

button:hover {
    background-color: #DF2B6C;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}
