/* Postlane — supplementary styles (primary brand styles are in _Layout.cshtml) */

/* Auth pages — centered card */
.auth-card {
    max-width: 460px;
    margin: 2rem auto;
}

/* Onboarding wizard */
.wizard-card {
    max-width: 700px;
    margin: 2rem auto;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.wizard-progress li {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 0.85rem;
    color: #9ca3af;
}

.wizard-progress li::before {
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    font-weight: 600;
    margin: 0 auto 0.5rem;
    transition: all 0.2s;
}

.wizard-progress li.active::before {
    background: var(--postlane-primary);
    color: white;
}

.wizard-progress li.completed::before {
    background: var(--postlane-primary);
    color: white;
    content: "\2713";
}

.wizard-progress li + li::after {
    content: "";
    position: absolute;
    top: 16px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
}

.wizard-progress li.active + li::after,
.wizard-progress li.completed + li::after {
    background: var(--postlane-primary);
}

/* Form validation */
.field-validation-error {
    color: #dc3545;
    font-size: 0.85rem;
}

.input-validation-error {
    border-color: #dc3545 !important;
}

/* Tab content transitions */
.tab-pane {
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Trial banner */
.trial-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}
