/* Base styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Title styling */
h1 {
    color: #007bff;
    font-size: 36px;
    margin-bottom: 30px;
}

/* Preformatted text styling (for the form data) */
pre {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 16px;
    color: #333;
}

/* Separator styling */
.separator {
    border: none;
    border-top: 2px solid #007bff; /* Bleu pour bien se voir */
    margin: 20px 0; /* Espacement autour du séparateur */
}

/* Button styling */
.btn {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Text alignment */
.text-center {
    text-align: center;
}

/* Padding between sections */
.mt-5 {
    margin-top: 50px;
}

.mt-4 {
    margin-top: 20px;
}
