.selection-card {
    width: 115px;
    height: 115px;
    background-color: rgba(128, 128, 128, 0.148);
    display: flex;        /* Use flexbox to center the text */
    justify-content: center;  /* Horizontally center the number */
    align-items: center;  /* Vertically center the number */
    font-size: 20px;
    border-radius: 10px;
}

.selection-card-active {
    width: 115px;
    height: 115x;
    background-color: rgba(0, 81, 255, 0.82);
    color: white;
    display: flex;        /* Use flexbox to center the text */
    justify-content: center;  /* Horizontally center the number */
    align-items: center;  /* Vertically center the number */
    font-size: 20px;
    border-radius: 10px;
}

.step-badge { 
    width: 30px;
    height: 30px;
    border-radius: 50%;   /* Make the element a circle */
    display: flex;        /* Use flexbox to center the text */
    justify-content: center;  /* Horizontally center the number */
    align-items: center;  /* Vertically center the number */
    font-size: 16px; 
    border: 1px solid rgba(141, 141, 141, 0.303);
    transition: 0.2s;
}

.material-image {
    width: 40px;
    height: 40px;
}

/* .step-badge:hover { 
    width: 50px;
    height: 50px;
    border-radius: 50%;   
    display: flex;        
    justify-content: center;  
    align-items: center;
    font-size: 20px;
    border: 1px solid rgba(0, 81, 255, 0.82);;
    cursor: pointer;
} */

.step-badge-active { 
    width: 30px;
    height: 30px;
    background-color: #16848F;
    color: white;         /* Set the text color */
    border-radius: 50%;   
    display: flex;        
    justify-content: center;  
    align-items: center;
    font-size: 16px; 
    font-weight: 600;
}


form {
    margin: auto;
}

/* Hide all steps initially */
.step {
    display: none;
}

/* Show the first step by default */
.step.active {
    display: block;
}

button {
    margin-top: 20px;
    padding: 10px 15px;
}



.radio-group {
    display: flex;
    gap: 10px;
}

.radio-input {
    display: none; /* Hide the actual radio input */
}

.radio-label {
    padding: 10px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.2s, border-color 0.2s;
}

.radio-input:checked + .radio-label {
    border-color: rgba(135, 184, 181, 1);
    background-color: rgba(135, 184, 181, 0.3);
}


.description-text {
    font-size: 14px;
}



.vorige-knop {
    background-color: white;
    color: #B4AC9E;
    border: 1px solid #B4AC9E;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.vorige-knop:hover {
    background-color: #B4AC9E;
    color: white;
    border: 1px solid #B4AC9E;
}

.volgende-knop {
    background-color: #16848F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.volgende-knop:hover {
    background-color: #11676f;
}