.eye-am-appointments-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.rdv-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.rdv-progress__item {
    flex: 1;
    text-align: center;
}

.rdv-progress__icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.rdv-progress__icon.is-active {
    background-color: #4CAF50;
}

.rdv__content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rdv__content.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.rdv__content__title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.rdv__select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.rdv__select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.js-rdv-datepicker {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.rdv__options {
    margin-top: 20px;
}

.rdv-options-title {
    font-size: 18px;
    color: #999;
    font-weight: normal;
    margin-bottom: 20px;
    text-align: center;
}

.rdv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rdv-list__item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rdv-list__item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.rdv-list__link {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.time-style {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.doc-style {
    color: #666;
    font-size: 14px;
}

/* Appointment Details */
.rdv-appointment-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rdv-appointment-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rdv-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.rdv-appointment-info {
    flex: 1;
}

.rdv-appointment-time {
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #333;
}

.rdv-appointment-doctor {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Form Styles */
.rdv-form {
    margin-top: 20px;
}

.rdv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.rdv-form-row:last-of-type {
    grid-template-columns: 1fr;
}

.rdv-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.rdv-form-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.rdv-form-input::placeholder {
    color: #999;
}

.rdv-form-checkboxes {
    margin: 20px 0;
}

.rdv-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.rdv-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.rdv-checkbox span {
    color: #333;
}

.rdv-submit-btn {
    background-color: #FFA500;
    color: white;
    padding: 14px 40px;
    border: 2px solid #FFA500;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.rdv-submit-btn:hover {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

.rdv-submit-btn:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.rdv-find-another {
    text-align: center;
    margin-top: 30px;
}

.rdv-back-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.rdv-back-link:hover {
    text-decoration: underline;
}

.planifier {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-x {
    display: flex;
    flex-wrap: wrap;
}

.cell {
    flex: 1;
    min-width: 0;
}

.cell.small-12 {
    flex: 0 0 100%;
}

.cell.medium-9 {
    flex: 0 0 75%;
}

.cell.medium-3 {
    flex: 0 0 25%;
}

.align-left {
    text-align: left;
}

@media (max-width: 768px) {
    .rdv__content {
        padding: 15px;
    }

    .rdv__content__title {
        font-size: 18px;
    }

    .planifier {
        font-size: 24px;
    }

    .cell.medium-9,
    .cell.medium-3 {
        flex: 0 0 100%;
    }
}
