body {
    background-color: #f8f9fa;
    font-family: 'Times New Roman', Times, serif; /* Spécifie la police */
}

.progress {
    height: 30px;
}

.progress-bar {
    background-color: #ED1C24;
    height: 30px;
}

.step-menu {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.step-menu .list-group-item.active {
    background-color: #C58B32;
    border-color: #C58B32;
}

.form-container {
    padding: 100px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.table-custom th {
    background-color: #3235c5;
    text-align: center;
    color: #ffffff;
}
.table-custom td {
    height: 40px; /* Ajuste la hauteur des lignes */
}
.table-custom {
    border-collapse: collapse; /* Pour s'assurer que les bordures se chevauchent bien */
}

.table-custom th, .table-custom td {
    border: 1px solid black; /* Définit l'épaisseur de la bordure intérieure */
    padding: 10px; /* Ajoute de l'espace autour du texte */
    text-align: center; /* Centre le texte */
    /*font-weight: bold;  Met le texte en gras */
}

input, textarea {
    text-align: center;
    width: 100%;
    border: none;
    padding: 5px;
    box-sizing: border-box;
}
.highlight {
    background-color: #C58B32;
    font-weight: bold;
}
.checkbox-column {
    width: 50px;
    text-align: center;
    vertical-align: middle;
}
.page-break {
    page-break-before: always;
}
#divID {
    /*font-size: 10px; /* Taille de la police */
    font-family: 'Times New Roman', Times, serif; /* Spécifie la police */
    color: #000000; /* Couleur du texte */
    font-weight: bold; /* Poids de la police */
    /*text-shadow: 1px 1px 2px #666; /* Ombre du texte */
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.custom-btn-primary {
    background-color: #C58B32; /* Couleur de fond */
    border-color: #C58B32;     /* Couleur de bordure */
    color: #fcfaf8;            /* Couleur du texte */
    font-weight: bold;      /* Texte en gras */
    animation: blink 1s infinite; /* Animation de clignotement */
}
.non-bold {
    font-weight: normal;
}

