.modern-radio-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
    direction: rtl;
    width: 100%;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
}

.modern-radio-group input[type="radio"] {
    display: none;
}

.modern-radio-group label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
    text-align: center;
    min-width: 100px;
    margin: 0;
    white-space: nowrap;
}

.modern-radio-group label:hover {
    border-color: #a3f321;
    background: #f5f9ff;
}

.modern-radio-group input[type="radio"]:checked + label {
    background: #3cec06;
    color: white;
    border-color: #1cff07;
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

/* Optional animation on hover */
.modern-radio-group label:hover {
    transform: translateY(-1px);
}

/* Active state animation */
.modern-radio-group label:active {
    transform: translateY(1px);
}
