/* Setup Wizard Styles */
.mrtr-setup-wizard {
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.mrtr-wizard-container {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mrtr-wizard-header {
    text-align: center;
    margin-bottom: 40px;
}

.mrtr-wizard-header h1 {
    margin: 0 0 10px 0;
    color: #1d2327;
    font-size: 28px;
}

.mrtr-wizard-header p {
    color: #646970;
    font-size: 16px;
    margin: 0;
}

.mrtr-wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.mrtr-progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mrtr-progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f1;
    border: 3px solid #dcdcde;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #646970;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.mrtr-progress-step.active .mrtr-progress-number {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.mrtr-progress-step.completed .mrtr-progress-number {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.mrtr-progress-label {
    font-size: 12px;
    color: #646970;
    text-align: center;
    font-weight: 600;
}

.mrtr-progress-step.active .mrtr-progress-label {
    color: #2271b1;
}

.mrtr-progress-step.completed .mrtr-progress-label {
    color: #28a745;
}

.mrtr-progress-line {
    flex: 1;
    height: 3px;
    background: #dcdcde;
    margin: 0 10px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.mrtr-progress-line.completed {
    background: #28a745;
}

.mrtr-wizard-form {
    margin-top: 30px;
}

.mrtr-wizard-step {
    margin-bottom: 30px;
}

.mrtr-wizard-step h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1d2327;
    font-size: 24px;
}

.mrtr-wizard-description {
    color: #646970;
    font-size: 14px;
    margin-bottom: 30px;
}

.mrtr-wizard-field {
    margin-bottom: 25px;
}

.mrtr-wizard-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.mrtr-wizard-field input[type="text"],
.mrtr-wizard-field input[type="email"],
.mrtr-wizard-field select {
    width: 100%;
    max-width: 500px;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
}

.mrtr-wizard-field .description {
    margin-top: 5px;
    font-size: 13px;
    color: #646970;
}

.mrtr-wizard-opening-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.mrtr-wizard-day-card {
    padding: 20px;
    border: 2px solid #dcdcde;
    border-radius: 6px;
    background: #f9f9f9;
    transition: all 0.2s;
}

.mrtr-wizard-day-card:hover {
    border-color: #2271b1;
    background: #f0f6fc;
}

.mrtr-wizard-day-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.mrtr-wizard-day-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.mrtr-wizard-day-times {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.mrtr-wizard-day-times .time-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mrtr-wizard-day-times label {
    font-size: 12px;
    font-weight: 600;
    color: #646970;
}

.mrtr-wizard-day-times .time-input {
    padding: 8px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
}

.mrtr-wizard-checklist {
    margin-top: 30px;
}

.mrtr-checklist-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
}

.mrtr-checklist-item .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #28a745;
    flex-shrink: 0;
}

.mrtr-checklist-item strong {
    display: block;
    margin-bottom: 5px;
    color: #1d2327;
}

.mrtr-checklist-item p {
    margin: 0;
    color: #646970;
    font-size: 14px;
}

.mrtr-checklist-item code {
    background: #f0f0f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
}

.mrtr-wizard-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #dcdcde;
}

.mrtr-wizard-actions .button {
    min-width: 120px;
}

.mrtr-wizard-field button.button-secondary {
    margin-top: 10px;
}

.mrtr-wizard-field button.button-secondary .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 782px) {
    .mrtr-wizard-container {
        padding: 20px;
    }
    
    .mrtr-wizard-progress {
        flex-wrap: wrap;
    }
    
    .mrtr-progress-line {
        display: none;
    }
    
    .mrtr-wizard-opening-hours {
        grid-template-columns: 1fr;
    }
    
    .mrtr-wizard-actions {
        flex-direction: column;
    }
    
    .mrtr-wizard-actions .button {
        width: 100%;
    }
}

