/*body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
}*/

.radio-container {
    font-family: Arial, sans-serif;
    width: 300px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/*h2 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #333;
}*/

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f1f1f1;
    border-radius: 5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.radio-option:hover {
    background: #e0e0e0;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked + span {
    color: #007bff;
    font-weight: bold;
}

.radio-option span {
    font-size: 1em;
    color: #333;
    padding-left: 8px;
}
