/* Base Styles */
.onboarding-page {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

/* Top Navigation - matches commissioning page */
.onboarding-page .app-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.onboarding-page .app-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onboarding-page .nav-logo {
    height: 40px;
    width: auto;
}

.onboarding-page .nav-links {
    display: flex;
    gap: 30px;
}

.onboarding-page .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.onboarding-page .nav-link:hover {
    color: #0CA4E0;
}

/* Main Content */
.onboarding-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.onboarding-header {
    text-align: center;
    margin-bottom: 30px;
}

.onboarding-header h1 {
    color: #00695c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.onboarding-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Form Container */
.onboarding-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

/* Section Styles */
.onboarding-section {
    margin-bottom: 40px;
}

.onboarding-section:last-child {
    margin-bottom: 0;
}

.onboarding-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #00695c;
    margin-bottom: 6px;
}

.onboarding-section-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.onboarding-section-divider {
    border: none;
    border-top: 2px solid #00695c;
    margin: 40px 0;
    opacity: 0.2;
}

/* Card header (inline title + close button) */
.onboarding-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* Template download & upload row */
.onboarding-upload-option {
    background: #f9fafb;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 16px;
}

.onboarding-template-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Question labels (bold/bigger for section questions) */
.onboarding-question {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333;
    margin-bottom: 4px;
}

/* Submit section */
.onboarding-submit-section {
    margin-top: 40px;
    text-align: center;
}

/* Footer - matches commissioning page */
.onboarding-page .app-footer {
    width: 100%;
    padding: 0 0 30px 0;
}

.onboarding-page .footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onboarding-page .footer-copyright {
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .onboarding-content {
        padding: 20px 15px;
    }

    .onboarding-form-container {
        padding: 24px 20px;
    }

    .onboarding-header h1 {
        font-size: 24px;
    }

    .onboarding-page .app-nav-container {
        padding: 0 15px;
    }

    .onboarding-page .nav-links {
        gap: 15px;
    }

    .onboarding-page .nav-link {
        font-size: 13px;
    }

    .onboarding-template-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
