.form-control {
    border-radius: 5px !important;
    height: 60px;
    padding-left: 38px;
    padding-top: 20px;
}

.date-input::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f073"; /* Icône calendrier */
    position: absolute;
    top: 18px;
    left: 12px;
    color: #495057;
    z-index: 9;
    font-size: 16px;
}

.datetimepicker-widget {
    border-radius: 10px;
    background-color: #d2232a;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.datetimepicker-widget table td.day:hover {
    background-color: #d2232a;
    color: #fff;
    border-radius: 50%;
}

.datetimepicker-widget table td.disabled,
.datetimepicker-widget table td.disabled:hover {
    text-decoration: line-through;
    color: #999;
    cursor: not-allowed;
}

.label-pos {
    position: absolute;
    bottom: 26px;
    left: 40px;
    font-size: 13px !important;
    color: #333;
    z-index: 9;
    font-weight: 400;
}
.custom-control-label {
    font-size: 14px !important;
}
.btn-custom {
    color: #ffffff;
    background-color: #d2232a;
    border-color: #d2232a;
    border-radius: 2px;
    height: 60px;
}

.btn-custom:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}


/* Forcer l'apparence du bouton radio */
input[type="radio"] {
    background-color: #fff; /* Fond blanc */
    border: 2px solid #007bff; /* Bordure bleue */
    width: 20px;  /* Taille ajustée */
    height: 20px; /* Taille ajustée */
}

input[type="radio"]:checked {
    background-color: #007bff; /* Couleur du bouton coché */
    border-color: #007bff;
}

.custom-checkbox {
    padding-left: 2rem;
}

/* C'est le style pour l'élément avant le tick (non coché) */
.custom-control-label::before {
    position: absolute;
    top: 0.5rem;
    left: 0rem;
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    pointer-events: none;
    content: "";
    background-color: #fff; /* Couleur de fond du bouton */
    border: #000000 solid 2px; /* Bordure */
    border-radius: 50%; /* Bordure ronde */
    border-top-color: rgb(173, 181, 189);
    border-right-color: rgb(173, 181, 189);
    border-bottom-color: rgb(173, 181, 189);
    border-left-color: rgb(173, 181, 189);
    transition: background-color 0.3s, border-color 0.3s;
}

/* Lorsque l'élément est coché (checked), changer l'arrière-plan, la bordure et ajouter un tick */
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #4caf50; /* Couleur de fond quand coché (vert) */
    border-color: #4caf50; /* Bordure verte */
    content: "\2713"; /* Symbole de tick (?) */
    color: white; /* Couleur du tick */
    font-size: 1.1rem; /* Taille du tick */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}