/* Complete Profile - Page-Specific Styles */

body {
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 500px;
    width: 100%;
}

/* Navbar override: centered logo only */
.nav-inner {
    justify-content: center;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

/* Profile Card */
.profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
}

.profile-card h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.profile-card .subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 32px;
    font-size: 0.9375rem;
}

/* Form overrides */
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group .helper-text {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-top: 6px;
}

/* Button overrides for full-width layout */
.btn {
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-ghost {
    margin-top: 12px;
}

/* Loading state */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

/* Already complete state */
.complete-state {
    text-align: center;
}

.complete-state svg {
    margin-bottom: 16px;
}

/* Footer override: no top margin, less padding */
.footer {
    padding: 24px 0;
    margin-top: 0;
}
