.rds-wrapper {
    max-width: 900px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.rds-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.rds-stepper .step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rds-stepper .step.active {
    background: #e32226;
}

.rds-stepper .line {
    width: 60px;
    height: 4px;
    background: #ddd;
}

.rds-step-content {
    display: none;
}

.rds-step-content.active {
    display: block;
}

.rds-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rds-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
}

.rds-card.active {
    border-color: #e32226;
    background: #fff5f5;
}

.rds-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.rds-calendar .day {
    padding: 10px;
    text-align: center;
    border-radius: 50%;
    background: #f2f2f2;
}

.rds-btn {
    background: #e32226;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}