/* Common styles for all appointment pages */
body {
    background: #f9fafc;
    margin: 0;
    padding: 0;
}

.appointment-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px;
}

.appointment-title {
    font-size: 32px;
    font-weight: 700;
    color: #353849;
    margin-bottom: 32px;
    text-align: center;
}

/* Progress Stepper */
.progress-stepper {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stepper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    opacity: 0.9;
}

.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Completed step */
.step.completed .step-badge {
    background: #e1f1ea;
    color: #00a196;
    border: 2px solid #00a196;
}

/* Show checkmark for completed steps with checkmark class */
.step.completed.show-checkmark .step-badge::before {
    content: '✓';
}

.step.completed .step-title {
    color: #737586;
}

/* Active step */
.step.active .step-badge {
    background: #00a196;
    color: white;
}

.step.active .step-title {
    color: #00a196;
    font-weight: 600;
}

/* Inactive step */
.step.inactive .step-badge {
    background: #f4f5f7;
    color: #898a98;
}

.step.inactive .step-title {
    color: #737586;
}

.step.inactive {
    pointer-events: none;
    opacity: 0.7;
}

.step-title {
    font-size: 16px;
    color: #737586;
    white-space: nowrap;
}

/* Divider between steps */
.step-divider {
    width: 80px;
    height: 2px;
    background: #e6e6eb;
    margin: 0 8px;
    position: relative;
}

.step-divider.completed {
    background: #00a196;
}

/* Consultant Card */
.consultant-info-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 400px;
}

.consultant-photo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.consultant-details {
    flex: 1;
}

.consultant-name {
    font-size: 16px;
    font-weight: 600;
    color: #353849;
    margin-bottom: 2px;
}

.consultant-title {
    font-size: 14px;
    color: #737586;
    margin-bottom: 4px;
}

.consultant-price {
    font-size: 16px;
    font-weight: 700;
    color: #353849;
}

/* Responsive */
@media (max-width: 768px) {
    .stepper-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-divider {
        display: none;
    }
    
    .step {
        width: 100%;
        justify-content: center;
    }
    
    .appointment-container {
        padding: 20px;
    }
}