:root {
    --tuesday-navy: #003366;
    --tuesday-blue: #0070C0;
    --tuesday-bg: #f4f6f9;
    --tuesday-success: #198754;
    --tuesday-warning: #E87722;
}

body.tuesday-body {
    background: var(--tuesday-bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #212529;
}

.intake-header {
    background: linear-gradient(135deg, var(--tuesday-navy) 0%, #004080 100%);
}

.tuesday-navbar {
    background: var(--tuesday-navy) !important;
}

.tuesday-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--tuesday-blue);
    border-color: var(--tuesday-blue);
}

.btn-primary:hover {
    background-color: #005a99;
    border-color: #005a99;
}

.btn-outline-primary {
    color: var(--tuesday-blue);
    border-color: var(--tuesday-blue);
}

.btn-outline-primary:hover {
    background-color: var(--tuesday-blue);
    border-color: var(--tuesday-blue);
}

.admin-main {
    min-height: calc(100vh - 56px);
}

.tuesday-board thead th {
    background: #f8fafc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6c757d;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.tuesday-board td {
    vertical-align: middle;
    font-size: 0.9rem;
}

.status-select {
    min-width: 140px;
    font-size: 0.8rem;
}

.status-pill {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #f0f4f8;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.status-pill.locked {
    color: #6c757d;
}

.lock-icon {
    font-size: 0.7rem;
    margin-left: 2px;
}

.status-badge {
    background: var(--tuesday-blue) !important;
}

.success-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: var(--tuesday-success);
    color: white;
    font-size: 2rem;
    margin: 0 auto;
}

/* Progress Stepper */
.progress-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 1rem 0;
}

.progress-stepper::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.stepper-line {
    display: none;
}

.stepper-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #cbd5e1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    transition: all 0.3s ease;
}

.stepper-step.complete .stepper-dot {
    background: var(--tuesday-blue);
    border-color: var(--tuesday-blue);
}

.stepper-step.active .stepper-dot {
    border-color: var(--tuesday-blue);
    box-shadow: 0 0 0 4px rgba(0, 112, 192, 0.2);
    animation: pulse 2s infinite;
}

.stepper-step.active .stepper-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--tuesday-blue);
    border-radius: 50%;
}

.stepper-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    text-align: center;
    color: #6c757d;
    max-width: 80px;
}

.stepper-step.complete .stepper-label,
.stepper-step.active .stepper-label {
    color: var(--tuesday-navy);
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0, 112, 192, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(0, 112, 192, 0.1); }
}

@media (min-width: 576px) {
    .progress-stepper {
        gap: 0;
    }
}

.comments-thread {
    max-height: 300px;
    overflow-y: auto;
}

.form-control:focus, .form-select:focus {
    border-color: var(--tuesday-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 112, 192, 0.15);
}
