*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #2d7df7;
    --blue-dark: #1a62d4;
    --blue-deeper: #0f4aad;
    --blue-light: #e8f1ff;
    --blue-muted: #bdd4fd;
    --green: #10b981;
    --amber: #f59e0b;
    --red: #ef4444;
    --gray-50: #f8fafd;
    --gray-100: #f1f5fb;
    --gray-200: #e5eaf2;
    --gray-400: #9ca3af;
    --gray-600: #6b7280;
    --gray-900: #111827;
    --radius: 12px;
    --radius-sm: 9px;
}

html,
body {
    min-height: 100vh;
    font-family: 'Figtree', sans-serif;
    background: var(--gray-100);
    color: var(--gray-900);
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1rem 4rem;
}

.topbar {
    width: 100%;
    max-width: 680px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon svg {
    width: 18px;
    height: 18px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.2px;
}

.topbar-date {
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
}

.steps {
    width: 100%;
    max-width: 680px;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s;
}

.step.active .step-circle {
    background: var(--blue);
    color: white;
    box-shadow: 0 0 0 4px rgba(45, 125, 247, 0.15);
}

.step.done .step-circle {
    background: var(--green);
    color: white;
}

.step.inactive .step-circle {
    background: var(--gray-200);
    color: var(--gray-400);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.3s;
}

.step.active .step-label {
    color: var(--blue);
}

.step.done .step-label {
    color: var(--green);
}

.step.inactive .step-label {
    color: var(--gray-400);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 0.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.step-line-fill {
    height: 100%;
    width: 0%;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.card {
    width: 100%;
    max-width: 680px;
    background: white;
    border-radius: 18px;
    border: 1.5px solid var(--gray-200);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.card-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.3px;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.card-body {
    padding: 1.5rem 1.75rem;
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}


/* ===== WEEKEND BLOCK ===== */

.weekend-block {
    text-align: center;
    padding: 2rem 1rem;
}

.weekend-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff7ed;
    border: 2px solid #fed7aa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2.2rem;
    color: #f97316;
}

.weekend-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.weekend-sub {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.weekend-info {
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.weekend-info-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 0.875rem;
}

.weekend-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.wday-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
}

.wday-row.workday {
    background: #f0fdf4;
}

.wday-row.offday {
    background: #fef2f2;
}

.wday-name {
    font-weight: 600;
}

.wday-row.workday .wday-name {
    color: #065f46;
}

.wday-row.offday .wday-name {
    color: #991b1b;
}

.wday-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.wday-row.workday .wday-badge {
    background: #d1fae5;
    color: #065f46;
}

.wday-row.offday .wday-badge {
    background: #fee2e2;
    color: #991b1b;
}

.weekend-next {
    background: var(--blue-light);
    border: 1.5px solid var(--blue-muted);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.weekend-next-icon {
    width: 34px;
    height: 34px;
    background: var(--blue);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.weekend-next-text {
    font-size: 0.82rem;
    color: var(--blue-deeper);
    line-height: 1.5;
}

.weekend-next-text strong {
    font-weight: 700;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.65rem 1.4rem;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Figtree', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

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


/* ========================= */

.login-info {
    background: var(--blue-light);
    border: 1.5px solid var(--blue-muted);
    border-radius: 12px;
    padding: 1rem 1.125rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.login-info-icon {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.login-info-text {
    font-size: 0.82rem;
    color: var(--blue-deeper);
    line-height: 1.5;
}

.login-info-text strong {
    font-weight: 700;
}

.alert {
    display: none;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
}

.alert.show {
    display: flex;
}

.alert-error {
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    color: #991b1b;
}

.alert-success {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    color: #166534;
}

.field {
    margin-bottom: 1.1rem;
}

.field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    pointer-events: none;
    font-size: 0.9rem;
}

.field-input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0 14px 0 38px;
    font-size: 0.88rem;
    font-family: 'Figtree', sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.field-input::placeholder {
    color: var(--gray-400);
}

.field-input:hover {
    border-color: #c5d1e8;
    background: white;
}

.field-input:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3.5px rgba(45, 125, 247, 0.1);
}

.field-toggle {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s;
    font-size: 0.95rem;
}

.field-toggle:hover {
    color: var(--gray-600);
}

.btn-primary {
    width: 100%;
    height: 48px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.btn-primary:hover:not(:disabled) {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45, 125, 247, 0.28);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1.1rem;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Figtree', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-ghost:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.identity-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1.5px solid var(--blue-muted);
    border-radius: 14px;
    padding: 1rem 1.125rem;
    margin-bottom: 1.5rem;
}

.id-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(45, 125, 247, 0.25);
}

.id-info {
    flex: 1;
}

.id-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--gray-900);
}

.id-email {
    font-size: 0.77rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.id-clock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.77rem;
    color: var(--blue-dark);
    font-weight: 600;
    margin-top: 5px;
}

.id-today {
    text-align: center;
    flex-shrink: 0;
}

.id-today-day {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.id-today-month {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.id-logout {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s;
    flex-shrink: 0;
}

.id-logout:hover {
    color: var(--red);
    background: #fef2f2;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.875rem;
}

.section-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-blue {
    background: var(--blue);
}

.dot-green {
    background: var(--green);
}

.dot-amber {
    background: var(--amber);
}

.dot-teal {
    background: #14b8a6;
}

.section-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-light);
    padding: 0.12rem 0.5rem;
    border-radius: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.section-badge.green {
    color: #065f46;
    background: #d1fae5;
}

hr.section-divider {
    border: none;
    border-top: 1.5px solid var(--gray-200);
    margin: 1.5rem 0;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border: 2px solid var(--gray-200);
    border-radius: 11px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    position: relative;
}

.status-card input {
    display: none;
}

.status-card:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.status-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.status-text {
    flex: 1;
}

.status-lbl {
    font-weight: 700;
    font-size: 0.83rem;
    color: var(--gray-900);
    display: block;
}

.status-desc {
    font-size: 0.68rem;
    color: var(--gray-400);
    margin-top: 1px;
    display: block;
}

.status-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.2s;
    flex-shrink: 0;
}

.sc-green:has(input:checked) {
    background: #f0fdf4;
    border-color: var(--green);
}

.sc-green .status-check {
    background: var(--green);
}

.sc-green .status-icon {
    color: var(--green);
}

.sc-blue:has(input:checked) {
    background: #eff6ff;
    border-color: var(--blue);
}

.sc-blue .status-check {
    background: var(--blue);
}

.sc-blue .status-icon {
    color: var(--blue);
}

.sc-amber:has(input:checked) {
    background: #fffbeb;
    border-color: var(--amber);
}

.sc-amber .status-check {
    background: var(--amber);
}

.sc-amber .status-icon {
    color: var(--amber);
}

.sc-red:has(input:checked) {
    background: #fef2f2;
    border-color: var(--red);
}

.sc-red .status-check {
    background: var(--red);
}

.sc-red .status-icon {
    color: var(--red);
}

.status-card:has(input:checked) .status-check {
    opacity: 1;
    transform: scale(1);
}

.abc-input-wrap {
    position: relative;
}

.abc-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
    pointer-events: none;
}

.abc-icon-top {
    top: 12px;
    transform: none;
}

.abc-input {
    width: 100%;
    padding: 0.6rem 0.875rem 0.6rem 2.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.83rem;
    font-family: 'Figtree', sans-serif;
    color: #374151;
    background: var(--gray-50);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.abc-input:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 125, 247, 0.08);
}

.abc-textarea {
    resize: vertical;
    min-height: 76px;
    padding-top: 0.65rem;
}

.abc-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.abc-required {
    color: var(--red);
}

.char-count {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-align: right;
    margin-top: 3px;
}

.gps-card {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.875rem;
    margin-bottom: 0.875rem;
    min-height: 60px;
}

.gps-loader {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gps-spin {
    width: 26px;
    height: 26px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    flex-shrink: 0;
}

.gps-lt {
    font-weight: 600;
    font-size: 0.82rem;
    color: #374151;
}

.gps-ls {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.gps-ok {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gps-pin {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.gps-coords {
    font-weight: 600;
    font-size: 0.8rem;
    color: #374151;
}

.gps-acc {
    font-size: 0.7rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.gps-info {
    flex: 1;
}

.gps-refresh {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    font-family: 'Figtree', sans-serif;
    font-size: 0.82rem;
    transition: all 0.15s;
}

.gps-refresh:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.gps-err {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gps-err-title {
    font-weight: 600;
    font-size: 0.82rem;
    color: #991b1b;
}

.gps-err-sub {
    font-size: 0.7rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.map-preview {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.875rem;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.73rem;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid var(--gray-200);
}

.map-open {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    padding: 0.45rem;
    color: var(--blue);
    font-size: 0.73rem;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid var(--gray-200);
}

.map-open:hover {
    background: var(--blue-light);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1.5px solid var(--gray-200);
    margin-top: 1.5rem;
}

.gps-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.55rem 0.875rem;
    font-size: 0.73rem;
    font-weight: 500;
    color: #92400e;
    margin-top: 0.75rem;
}

.auto-tag {
    display: none;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-light);
    padding: 0.1rem 0.45rem;
    border-radius: 20px;
}

.success-wrap {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--green);
}

.success-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.success-sub {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
}

.success-detail {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-200);
}

.success-detail-row:last-child {
    border-bottom: none;
}

.sd-key {
    color: var(--gray-600);
    font-weight: 500;
}

.sd-val {
    font-weight: 700;
    color: var(--gray-900);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pill-green {
    background: #d1fae5;
    color: #065f46;
}

.pill-blue {
    background: var(--blue-light);
    color: var(--blue-deeper);
}

.pill-amber {
    background: #fef3c7;
    color: #78350f;
}

.pill-red {
    background: #fee2e2;
    color: #991b1b;
}

.done-banner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    padding: 1rem 1.125rem;
    margin-bottom: 1rem;
}

.done-banner-icon {
    width: 38px;
    height: 38px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.done-banner-text {
    font-size: 0.82rem;
    color: #166534;
    line-height: 1.5;
}

.done-banner-text strong {
    font-weight: 700;
}

@media (max-width: 600px) {
    .page-wrap {
        padding: 1.25rem 0.75rem 3rem;
    }
    .card-body {
        padding: 1.25rem;
    }
    .card-header {
        padding: 1.125rem 1.25rem 1rem;
    }
    .status-grid {
        grid-template-columns: 1fr 1fr;
    }
    .topbar-date {
        display: none;
    }
    .form-actions {
        flex-direction: column-reverse;
    }
    .form-actions .btn-ghost,
    .form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .weekend-schedule {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}