/* Online Randevu Page Styles */
.online-appointment-section {
    padding: 60px 0;
    background: linear-gradient(112deg, #edf6ff, #baddff);
    min-height: 100vh;
}

.appointment-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(4, 45, 89, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

/* Stepper Styles */
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 25px;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 75px;
    right: 75px;
    height: 3px;
    background: linear-gradient(90deg, #e6e6e6 0%, #e6e6e6 100%);
    z-index: 1;
    border-radius: 2px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 120px;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s ease;
    margin-bottom: 12px;
    border: 3px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.step-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 184, 197, 0.1), rgba(37, 184, 197, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.step-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #25B8C5, #1dabb7);
    color: white;
    border-color: #25B8C5;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 184, 197, 0.3);
    animation: pulse 2s infinite;
}

.step.active .step-circle::before {
    opacity: 1;
}

.step.active .step-label {
    color: #25B8C5;
    font-weight: 700;
    transform: translateY(-2px);
}

.step.completed .step-circle {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.step.completed .step-label {
    color: #28a745;
    font-weight: 700;
}

.step.completed .step-circle::after {
    content: '✓';
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step.completed .step-circle {
    font-size: 0; /* Hide the number when completed */
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 184, 197, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 184, 197, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 184, 197, 0.3);
    }
}

/* Progress line animation */
.stepper.step-2::before {
    background: linear-gradient(90deg, #25B8C5 0%, #25B8C5 25%, #e6e6e6 25%, #e6e6e6 100%);
}

.stepper.step-3::before {
    background: linear-gradient(90deg, #25B8C5 0%, #25B8C5 50%, #e6e6e6 50%, #e6e6e6 100%);
}

.stepper.step-4::before {
    background: linear-gradient(90deg, #25B8C5 0%, #25B8C5 75%, #e6e6e6 75%, #e6e6e6 100%);
}

.stepper.step-5::before {
    background: linear-gradient(90deg, #25B8C5 0%, #25B8C5 100%);
}

/* Step Content */
.step-content {
    min-height: 400px;
    position: relative;
}

.step-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h3 {
    font-size: 28px;
    color: #042D59;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #042D59;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Roobert', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #25B8C5;
    box-shadow: 0 0 0 3px rgba(37, 184, 197, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-control.error {
    border-color: #dc3545;
}

/* Custom Select */
.custom-select-container {
    position: relative;
}

.custom-select {
    position: relative;
    cursor: pointer;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s ease;
}

.custom-select:hover {
    border-color: #25B8C5;
}

.custom-select input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    pointer-events: none;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.custom-select.active .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #25B8C5;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.select-options.active {
    display: block;
}

.select-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.select-option:hover {
    background-color: rgba(37, 184, 197, 0.1);
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.doctor-card {
    border: 2px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.doctor-card:hover {
    border-color: #25B8C5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 184, 197, 0.1);
}

.doctor-card.selected {
    border-color: #25B8C5;
    background: rgba(37, 184, 197, 0.05);
}

.doctor-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.doctor-card h4 {
    font-size: 16px;
    color: #042D59;
    margin-bottom: 5px;
    font-weight: 600;
}

.doctor-card p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Date Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.date-selection h4,
.time-selection h4 {
    font-size: 18px;
    color: #042D59;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Date Picker Controls */
.date-picker-controls {
    margin-bottom: 20px;
}

.date-range-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    background: rgba(37, 184, 197, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(37, 184, 197, 0.2);
}

.date-nav-btn {
    background: #25B8C5;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.date-nav-btn:hover {
    background: #1dabb7;
    transform: scale(1.1);
}

.date-range-text {
    font-size: 14px;
    font-weight: 600;
    color: #042D59;
    min-width: 200px;
    text-align: center;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.date-item {
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.date-item:hover {
    border-color: #25B8C5;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(37, 184, 197, 0.2);
}

.date-item.selected {
    border-color: #25B8C5;
    background: rgba(37, 184, 197, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(37, 184, 197, 0.2);
}

.date-item.today {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.date-item.today.selected {
    border-color: #25B8C5;
    background: rgba(37, 184, 197, 0.1);
}

.date-item .day {
    font-size: 16px;
    font-weight: 600;
    color: #042D59;
    display: block;
}

.date-item .date {
    font-size: 12px;
    color: #666;
}

.today-label {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffc107;
    color: #042D59;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.time-item {
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #042D59;
}

.time-item:hover {
    border-color: #25B8C5;
}

.time-item.selected {
    border-color: #25B8C5;
    background: rgba(37, 184, 197, 0.05);
}

.time-item.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

/* Birth Date Inputs */
.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

/* Gender Options - Fixed Design */
.gender-options {
    display: flex;
    gap: 25px;
    margin-top: 5px;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #042D59;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.custom-radio:hover {
    color: #25B8C5;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-mark {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d1d1;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.custom-radio input:checked ~ .radio-mark {
    border-color: #25B8C5;
    background: #25B8C5;
    box-shadow: 0 0 0 3px rgba(37, 184, 197, 0.1);
}

.custom-radio input:checked ~ .radio-mark::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Consent Section - Fixed Checkboxes */
.consent-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 18px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.custom-checkbox:hover .checkbox-label {
    color: #042D59;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d1d1;
    border-radius: 6px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox input:checked ~ .checkmark {
    border-color: #25B8C5;
    background: #25B8C5;
    box-shadow: 0 0 0 3px rgba(37, 184, 197, 0.1);
}

.custom-checkbox input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.checkbox-label a {
    color: #25B8C5;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: #1dabb7;
}

/* Summary Cards - Modern Design */
.appointment-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.summary-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(37, 184, 197, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25B8C5, #1dabb7);
    border-radius: 16px 16px 0 0;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 184, 197, 0.15);
}

.summary-card h4 {
    font-size: 20px;
    color: #042D59;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-card h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #25B8C5;
    border-radius: 50%;
    display: inline-block;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(4, 45, 89, 0.08);
    transition: all 0.3s ease;
}

.summary-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item:hover {
    background: rgba(37, 184, 197, 0.02);
    margin: 0 -15px 18px -15px;
    padding: 15px;
    border-radius: 8px;
}

.summary-item:last-child:hover {
    margin-bottom: -15px;
}

.summary-item .label {
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item .label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #25B8C5;
    border-radius: 50%;
    opacity: 0.6;
}

.summary-item .value {
    font-weight: 700;
    color: #042D59;
    font-size: 15px;
    text-align: right;
    max-width: 60%;
}

/* Special styling for different card types */
.summary-card:first-child {
    background: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 100%);
}

.summary-card:last-child {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.summary-card:first-child::before {
    background: linear-gradient(90deg, #25B8C5, #00acc1);
}

.summary-card:last-child::before {
    background: linear-gradient(90deg, #042D59, #1565c0);
}

/* Icons for different summary items */
.summary-item.specialty .label::before { background: #e91e63; }
.summary-item.doctor .label::before { background: #9c27b0; }
.summary-item.date .label::before { background: #ff9800; }
.summary-item.time .label::before { background: #4caf50; }
.summary-item.name .label::before { background: #2196f3; }
.summary-item.tc .label::before { background: #ff5722; }
.summary-item.birth .label::before { background: #795548; }
.summary-item.phone .label::before { background: #009688; }

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e6e6e6;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    /*display: flex;*/
    align-items: center;
    gap: 8px;
    font-family: 'Roobert', sans-serif;
}

.btn-primary {
    background: #25B8C5;
    color: white;
    margin-left: auto;
}

.btn-primary:hover {
    background: #1dabb7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 184, 197, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #042D59;
    border: 2px solid #e6e6e6;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #25B8C5;
}

.btn-success {
    background: #28a745;
    color: white;
    margin-left: auto;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Loading state */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .online-appointment-section {
        padding: 30px 0;
    }
    
    .appointment-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .stepper {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    
    .stepper::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
        min-width: auto;
    }
    
    .step-circle {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .appointment-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-card {
        padding: 25px 20px;
    }
    
    .summary-card h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .summary-item {
        padding: 12px 0;
        margin-bottom: 15px;
    }
    
    .summary-item:hover {
        margin: 0 -10px 15px -10px;
        padding: 12px 10px;
    }
    
    .date-inputs {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-success {
        margin-left: 0;
    }
    
    .date-range-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .date-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .gender-options {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Popup responsive */
    .success-popup {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon::before {
        font-size: 35px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .appointment-number-value {
        font-size: 24px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .date-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .date-range-text {
        min-width: 150px;
        font-size: 12px;
    }
    
    .summary-card {
        padding: 20px 15px;
    }
    
    .summary-card h4 {
        font-size: 16px;
    }
    
    .summary-item .label {
        font-size: 13px;
    }
    
    .summary-item .value {
        font-size: 14px;
    }
    
    .success-popup {
        padding: 25px 15px;
    }
    
    .popup-title {
        font-size: 18px;
    }
    
    .appointment-number-value {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

/* Custom Success Popup */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.success-popup-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.success-popup {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.success-popup-overlay.show .success-popup {
    transform: scale(1) translateY(0);
}

.success-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    border-radius: 20px 20px 0 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successBounce 0.6s ease 0.2s both;
}

.success-icon::before {
    content: '✓';
    color: white;
    font-size: 40px;
    font-weight: 900;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #042D59;
    margin-bottom: 15px;
    animation: slideUp 0.5s ease 0.4s both;
}

.popup-message {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    animation: slideUp 0.5s ease 0.5s both;
}

.appointment-number {
    background: linear-gradient(135deg, #f0fdff, #e0f7fa);
    border: 2px solid #25B8C5;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    animation: slideUp 0.5s ease 0.6s both;
}

.appointment-number-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.appointment-number-value {
    font-size: 28px;
    font-weight: 900;
    color: #25B8C5;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: slideUp 0.5s ease 0.7s both;
}

.popup-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #25B8C5, #1dabb7);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 184, 197, 0.3);
}

.popup-btn-primary:hover {
    background: linear-gradient(135deg, #1dabb7, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 184, 197, 0.4);
}

.popup-btn-secondary {
    background: #f8f9fa;
    color: #042D59;
    border: 2px solid #e6e6e6;
}

.popup-btn-secondary:hover {
    background: #e9ecef;
    border-color: #25B8C5;
}

/* Animations */
@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appointment-info {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.appointment-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #042D59;
}

.appointment-info p:last-child {
    margin-bottom: 0;
}

.appointment-info a {
    color: #25B8C5;
    text-decoration: underline;
} 