.list-group-item {
    border: none;
    background-color: #f8f9fa;
}

.form-control, .form-check-input {
    border-radius: 10px;
}

.btn {
    border-radius: 20px;
    transition: box-shadow 0.3s, transform 0.3s;  /* transition en douceur */
}

.btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  /* ombre portée au survol */
    transform: translateY(-3px);  /* léger déplacement vers le haut */
}

.btn:active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);  /* ombre portée lors de l'activation (clic) */
    transform: translateY(1px);  /* léger déplacement vers le bas */
}

/* Style pour les étiquettes des champs de formulaire */
.form-label {
    font-weight: bold;
}

.nav-link {
    transition: color 0.3s, background-color 0.3s, border-radius 0.3s, text-shadow 0.3s, box-shadow 0.3s;
    border-radius: 15px;  /* Bords initialement non arrondis */
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.nav-link:hover {
    transform: scale(1.1);
    color: #fff !important;  /* Texte blanc au survol */
    background-color: #007BFF;  /* Couleur de fond de Bootstrap primary */
    border-radius: 15px;  /* Bords arrondis au survol */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* CSS pour le titre */
h1 {
    color: #007BFF;  /* Couleur de texte de Bootstrap primary */
    font-family: 'Arial', sans-serif;  /* Choisir une police qui vous plaît */
    text-align: center;
    margin-bottom: 20px;
}

.stepwizard-step p {
    margin-top: 0px;
    color:#666;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    /*opacity: 1 !important;
    filter: alpha(opacity=100) !important;*/
}
.stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn {
    opacity:1 !important;
    color:#bbb;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content:" ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}
