@font-face { font-family: "Poppins"; src: url("assets/poppins-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("assets/poppins-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("assets/poppins-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("assets/poppins-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("assets/poppins-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  color-scheme: light;
  --ink: #162a36;
  --muted: #667781;
  --line: #dce4e8;
  --surface: #ffffff;
  --canvas: #f5f9ff;
  --navy: #12345a;
  --navy-2: #09294c;
  --brand-blue: #0080ff;
  --brand-green: #32cd32;
  --teal: var(--brand-blue);
  --teal-soft: #e8f4ff;
  --green: var(--brand-green);
  --green-ink: #16851d;
  --green-soft: #e9fbe9;
  --amber: #a46100;
  --amber-soft: #fff1d4;
  --red: #b33b32;
  --red-soft: #fbe8e6;
  --blue: #0080ff;
  --blue-soft: #e8f4ff;
  --shadow: 0 12px 30px rgba(31, 42, 68, 0.07);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
.booting > :not(.app-loading) { display: none !important; }
.app-loading { position: fixed; inset: 0; z-index: 9999; display: grid; place-content: center; justify-items: center; gap: 8px; background: #f5f9ff; color: var(--ink); text-align: center; }
.app-loading img { width: 72px; height: 72px; object-fit: contain; }
.app-loading strong { font-size: 20px; letter-spacing: .02em; }
.app-loading span { color: var(--muted); font-size: 11px; }
.app-loading i { width: 28px; height: 28px; margin-top: 8px; border: 3px solid #d6e9ff; border-top-color: var(--brand-blue); border-radius: 50%; animation: loading-spin .75s linear infinite; }
@keyframes loading-spin { to { transform: rotate(360deg); } }
body { margin: 0; color: var(--ink); background: var(--canvas); min-width: 320px; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }

.login-screen { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr); background: linear-gradient(145deg, #f8fbff, #eef7ff); }
.login-card { width: min(480px, calc(100% - 40px)); margin: auto; padding: 38px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 24px 70px rgba(31,42,68,.09); }
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 46px; }.login-brand strong, .login-brand small { display: block; }.login-brand strong { font-size: 20px; }.login-brand small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.login-copy h1 { margin: 7px 0 10px; font-size: clamp(25px, 4vw, 34px); letter-spacing: -.025em; }.login-copy > p:last-child { margin: 0; color: var(--muted); line-height: 1.6; font-size: 13px; }
.login-form { display: grid; gap: 15px; margin-top: 30px; }.login-button { width: 100%; min-height: 48px; margin-top: 2px; }.login-hint { margin: -2px 0 0; color: var(--muted); font-size: 10px; }.form-error { min-height: 16px; margin: -5px 0; color: var(--red); font-size: 11px; }
.login-form select { height: 46px; padding: 0 44px 0 14px; font-size: 14px; font-weight: 600; line-height: normal; }
.login-aside { padding: 58px; display: flex; flex-direction: column; justify-content: space-between; color: white; background: linear-gradient(145deg, #006edb, #0080ff 62%, #2b98ff); overflow: hidden; position: relative; }.login-aside::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -150px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 0 0 70px rgba(50,205,50,.08), 0 0 0 140px rgba(255,255,255,.03); }.login-aside > span { position: relative; z-index: 1; font-size: 11px; font-weight: 800; letter-spacing: .16em; opacity: .82; }.login-aside blockquote { max-width: 460px; margin: auto 0; position: relative; z-index: 1; font-size: clamp(28px, 4vw, 52px); line-height: 1.2; font-weight: 750; letter-spacing: -.035em; }.login-aside > div { position: relative; z-index: 1; }.login-aside > div strong, .login-aside > div small { display: block; }.login-aside > div strong { font-size: 42px; color: #b8ffb8; }.login-aside > div small { margin-top: 3px; opacity: .82; }
.company-logo { display: block; object-fit: contain; }.login-logo { width: 62px; height: 62px; }.sidebar-logo { width: 46px; height: 46px; margin-left: -4px; }.aside-logo { position: absolute; right: 38px; top: 24px; width: 124px; height: 124px; padding: 8px; object-fit: contain; background: rgba(255,255,255,.96); border-radius: 18px; filter: drop-shadow(0 10px 25px rgba(0,35,80,.16)); }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 238px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 22px 16px 16px; background: white; color: var(--ink); border-right: 1px solid var(--line); display: flex; flex-direction: column; z-index: 40; }
.brand { display: flex; align-items: center; gap: 12px; padding: 0 8px 24px; }
.brand strong { display: block; font-size: 18px; }
.brand small { display: block; color: var(--muted); margin-top: 2px; font-size: 11px; }
.brand-mark { width: 38px; height: 38px; border-radius: 8px; background: var(--brand-blue); position: relative; box-shadow: inset 0 0 0 6px rgba(255,255,255,.14); flex: 0 0 auto; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: white; left: 18px; top: 9px; transform-origin: 1px 10px; border-radius: 2px; }
.brand-mark::before { width: 2px; height: 11px; }
.brand-mark::after { width: 9px; height: 2px; top: 19px; transform: rotate(28deg); }
.brand-mark span { position: absolute; width: 5px; height: 5px; background: white; border-radius: 50%; left: 16.5px; top: 16.5px; }
.nav-list { display: grid; gap: 5px; }
.nav-item { border: 0; color: var(--muted); background: transparent; display: flex; align-items: center; gap: 12px; min-height: 44px; width: 100%; padding: 0 12px; border-radius: 6px; text-align: left; font-weight: 650; }
.nav-item:hover { color: var(--ink); background: #f3f5fa; }
.nav-item.active { color: #006bd6; background: #e8f4ff; box-shadow: inset 3px 0 0 var(--brand-green); }
.external-nav-link { text-decoration: none; }.external-nav-icon { width: 13px; height: 13px; margin-left: auto; opacity: .65; }
.requests-nav-item > span:nth-child(2) { min-width: 0; }
.request-notification-badge { min-width: 22px; height: 22px; margin-left: auto; padding: 0 6px; display: inline-grid; place-items: center; border: 2px solid white; border-radius: 99px; color: white; background: #e34a40; box-shadow: 0 3px 9px rgba(227,74,64,.28); font-size: 9px; font-weight: 850; line-height: 1; }
.request-notification-badge[hidden] { display: none; }
.request-notification-badge.has-new { animation: request-pulse 1.2s ease-in-out 2; }
@keyframes request-pulse { 0%, 100% { transform: scale(1); } 45% { transform: scale(1.18); box-shadow: 0 0 0 6px rgba(227,74,64,.14); } }
.nav-symbol { width: 20px; height: 20px; display: grid; place-items: center; font-size: 17px; }
.sidebar-footer { margin-top: auto; padding: 14px 8px 0; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.mini-profile { min-width: 0; display: flex; align-items: center; gap: 9px; flex: 1; }
.mini-profile strong, .mini-profile small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mini-profile strong { font-size: 12px; }.mini-profile small { font-size: 10px; color: var(--muted); margin-top: 2px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-size: 11px; font-weight: 800; flex: 0 0 auto; }
.avatar-admin { color: #006bd6; background: #e8f4ff; }

.main-content { min-width: 0; }
.topbar { min-height: 88px; padding: 16px 28px; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; position: sticky; top: 0; z-index: 30; }
.topbar-left { display: flex; align-items: center; gap: 12px; }.topbar h1 { margin: 2px 0 0; font-size: 23px; line-height: 1.2; }
.eyebrow { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.live-clock { min-height: 44px; padding: 5px 13px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 6px; background: white; font-variant-numeric: tabular-nums; }.live-clock strong, .live-clock small { display: block; }.live-clock small { margin-top: 1px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .02em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.primary-button, .secondary-button { min-height: 40px; border-radius: 6px; padding: 0 15px; font-weight: 700; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.primary-button { color: white; background: var(--teal); }.primary-button:hover { background: #006fdc; }.primary-button:disabled { cursor: default; color: var(--muted); background: #e8edee; }
.secondary-button { color: var(--ink); background: white; border-color: var(--line); }.secondary-button:hover { background: #f7f9f9; }
.icon-button { width: 38px; height: 38px; border-radius: 6px; border: 0; background: transparent; color: inherit; font-size: 20px; display: grid; place-items: center; }
.icon-button:hover { background: #f0f2f6; }.menu-button { display: none; color: var(--ink); }.menu-button:hover { background: var(--gray-soft, #eef2f3); }
.page-wrap { padding: 24px 28px 34px; max-width: 1580px; margin: 0 auto; }
.view { display: none; }.view.active { display: block; animation: reveal .18s ease-out; }
@keyframes reveal { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }

.checkin-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr); gap: 18px; align-items: start; }
.simple-checkin-layout { display: block; max-width: 780px; margin: 0 auto; }
.checkin-panel { padding: 24px; overflow: visible; }
.checkin-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.checkin-header h2 { margin: 4px 0 7px; font-size: 22px; }.checkin-header > div > p:last-child { margin: 0; color: var(--muted); font-size: 12px; }
.checkin-date { flex: 0 0 auto; min-width: 110px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 6px; background: #f8faf9; text-align: right; }.checkin-date span, .checkin-date strong { display: block; }.checkin-date span { color: var(--muted); font-size: 10px; text-transform: uppercase; }.checkin-date strong { margin-top: 3px; font-size: 15px; }
.profile-label { display: flex; align-items: center; gap: 10px; padding-top: 18px; }.profile-label > span { width: 27px; height: 27px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: white; font-size: 11px; font-weight: 850; }.profile-label strong, .profile-label small { display: block; }.profile-label strong { font-size: 12px; }.profile-label small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.member-picker { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 7px; padding: 12px 0 16px; }
.simple-member-select { display: grid; gap: 7px; max-width: 360px; padding: 18px 0 14px; }.simple-member-select span { color: var(--muted); font-size: 10px; font-weight: 750; }.simple-member-select select { width: 100%; height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 6px; background: white; color: var(--ink); font-weight: 700; outline: none; }.simple-member-select select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.member-pick { min-width: 0; min-height: 60px; padding: 7px 4px; border: 1px solid var(--line); border-radius: 6px; background: white; color: var(--ink); display: grid; place-items: center; gap: 4px; }.member-pick:hover { border-color: #91b9b4; background: #f8fbfa; }.member-pick.active { border-color: var(--teal); background: var(--teal-soft); box-shadow: 0 0 0 2px rgba(8,127,118,.09); }.member-pick .avatar { width: 30px; height: 30px; }.member-pick span { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; font-weight: 750; }
.worker-station { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fbfcfc; }.worker-summary { min-height: 68px; padding: 11px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }.selected-member-profile { display: flex; align-items: center; gap: 10px; }.selected-member-profile .avatar { width: 40px; height: 40px; }.selected-member-profile strong, .selected-member-profile small { display: block; }.selected-member-profile strong { font-size: 14px; }.selected-member-profile small { color: var(--muted); font-size: 10px; margin-top: 3px; }.selected-hours { text-align: right; }.selected-hours span, .selected-hours strong { display: block; }.selected-hours span { color: var(--muted); font-size: 9px; }.selected-hours strong { margin-top: 3px; font-size: 17px; color: var(--teal); }
.next-action { padding: 20px; background: white; text-align: center; }.next-action-clock { color: var(--muted); font-size: 11px; }.next-action-clock strong { display: block; margin: 4px 0 15px; color: var(--ink); font-size: 28px; font-variant-numeric: tabular-nums; }.next-action p { margin: 0 0 12px; color: var(--muted); font-size: 11px; }.main-punch-button { min-height: 52px; min-width: 250px; padding: 0 22px; border: 0; border-radius: 6px; background: var(--teal); color: white; font-weight: 850; box-shadow: 0 8px 18px rgba(0,128,255,.2); }.main-punch-button:hover { background: #006fdc; }.main-punch-button:disabled { cursor: default; color: var(--muted); background: #e8edee; box-shadow: none; }
.time-clock-face { display: grid; grid-template-columns: minmax(110px, 1fr) 168px minmax(110px, 1fr); align-items: center; gap: 22px; max-width: 590px; margin: 0 auto; }.clock-readout, .tracked-readout { text-align: center; }.clock-readout span, .tracked-readout span { display: block; color: var(--muted); font-size: 8px; font-weight: 800; }.clock-readout strong, .tracked-readout strong { display: block; margin-top: 6px; font-size: 18px; font-variant-numeric: tabular-nums; }.tracked-readout strong { color: var(--brand-blue); }.timer-action { width: 168px; aspect-ratio: 1; border-radius: 50%; border: 8px solid var(--brand-green); background: var(--brand-blue); color: white; display: grid; place-content: center; gap: 3px; box-shadow: 0 9px 24px rgba(0,128,255,.22), inset 0 0 0 1px rgba(255,255,255,.22); }.timer-action:hover:not(:disabled) { background: #006fdc; transform: translateY(-1px); }.timer-action:disabled { cursor: default; color: var(--muted); background: #eef1f3; border-color: #f5f6f7; box-shadow: none; }.timer-icon { font-size: 20px; line-height: 1; }.timer-action strong { font-size: 15px; }.timer-action small { max-width: 104px; color: rgba(255,255,255,.9); font-size: 8px; }.timer-action:disabled small { color: var(--muted); }.clock-helper { margin: 15px 0 0 !important; }
.clock-secondary-actions { min-height: 32px; margin-top: 8px; display: flex; justify-content: center; }
.undo-action-button { min-height: 32px; border: 1px solid #b9c9dc; border-radius: 5px; padding: 0 12px; background: #f4f8ff; color: #24547d; font-size: 10px; font-weight: 800; }
.undo-action-button:hover { border-color: var(--brand-blue); background: #eaf4ff; color: var(--brand-blue); }
.break-action-row { max-width: 420px; margin: 14px auto 0; padding: 11px; border: 1px solid #e2e6ec; border-radius: 6px; background: #f8f9fc; display: flex; align-items: end; gap: 9px; text-align: left; }.break-action-row label { flex: 1; display: grid; gap: 5px; }.break-action-row label span { color: var(--muted); font-size: 8px; font-weight: 800; }.break-action-row select { height: 36px; min-width: 0; border: 1px solid var(--line); border-radius: 5px; padding: 0 8px; background: white; }.break-button { min-height: 36px; border: 1px solid #d4a14d; border-radius: 5px; padding: 0 12px; background: var(--amber-soft); color: var(--amber); font-size: 10px; font-weight: 800; white-space: nowrap; }.break-button:hover { background: #ffe8b7; }.away-chip { display: inline-flex; align-items: center; min-height: 23px; margin-top: 8px; padding: 0 8px; border-radius: 99px; background: var(--amber-soft); color: var(--amber); font-size: 9px; font-weight: 800; }
.punch-timeline { padding: 16px 18px 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: #f7f9f9; }.timeline-step { position: relative; min-width: 0; text-align: center; padding: 0 5px; }.timeline-step:not(:last-child)::after { content: ""; position: absolute; top: 11px; left: calc(50% + 13px); right: calc(-50% + 13px); height: 2px; background: var(--line); }.timeline-step.done:not(:last-child)::after { background: #8cc7a5; }.step-dot { width: 24px; height: 24px; margin: 0 auto 7px; border-radius: 50%; display: grid; place-items: center; position: relative; z-index: 1; border: 2px solid #cbd6da; background: white; color: var(--muted); font-size: 9px; font-weight: 850; }.timeline-step.done .step-dot { color: white; background: var(--green); border-color: var(--green); }.timeline-step.active .step-dot { color: var(--teal); border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }.timeline-step strong, .timeline-step time { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.timeline-step strong { font-size: 9px; }.timeline-step time { margin-top: 3px; color: var(--muted); font-size: 9px; font-variant-numeric: tabular-nums; }
.personal-report { padding-top: 18px; }.report-label { margin-bottom: 12px; }.report-label strong, .report-label small { display: block; }.report-label strong { font-size: 12px; }.report-label small { margin-top: 3px; color: var(--muted); font-size: 9px; }.personal-report-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 12px; }.work-status-field { min-width: 180px; }
.today-board { box-shadow: var(--shadow); }.today-board .panel-heading > strong { color: var(--teal); }.today-board-list { padding: 4px 16px 10px; }.board-row { min-height: 53px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid #edf1f2; }.board-row:last-child { border-bottom: 0; }.board-member { display: flex; align-items: center; gap: 9px; min-width: 0; }.board-member .avatar { width: 31px; height: 31px; }.board-member strong, .board-member small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.board-member strong { font-size: 11px; }.board-member small { margin-top: 2px; color: var(--muted); font-size: 9px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; min-height: 108px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 8px rgba(18,60,80,.025); }
.stat-card p { margin: 0 0 7px; color: var(--muted); font-size: 12px; font-weight: 650; }.stat-card strong { font-size: 26px; line-height: 1; }.stat-card small { display: block; margin-top: 8px; color: var(--muted); font-size: 10px; }
.stat-visual { width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center; font-weight: 900; font-size: 16px; }
.visual-green { color: var(--green); background: var(--green-soft); }.visual-blue { color: var(--blue); background: var(--blue-soft); }.visual-amber { color: var(--amber); background: var(--amber-soft); }.visual-red { color: var(--red); background: var(--red-soft); }
.overview-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(310px, .85fr); gap: 18px; align-items: start; }
.right-stack { display: grid; gap: 18px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.panel-heading { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.panel-heading.compact { min-height: 62px; }.panel-heading h2 { margin: 0; font-size: 15px; }.panel-heading p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.text-button { border: 0; background: transparent; color: var(--teal); font-weight: 750; padding: 6px; }
.member-list { min-height: 440px; }
.member-row { min-height: 65px; padding: 10px 14px 10px 18px; display: grid; grid-template-columns: minmax(150px, 1.2fr) 118px 76px 90px minmax(130px, 1fr) 36px; align-items: center; gap: 12px; border-bottom: 1px solid #edf1f2; }
.member-row:last-child { border-bottom: 0; }.member-name { display: flex; align-items: center; gap: 10px; min-width: 0; }.member-name strong, .member-name small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.member-name strong { font-size: 13px; }.member-name small { color: var(--muted); font-size: 10px; margin-top: 3px; }
.cell-label { display: none; }.time-cell { font-size: 12px; font-weight: 650; font-variant-numeric: tabular-nums; }.hours-cell { font-size: 12px; font-weight: 800; }
.status-badge { justify-self: start; display: inline-flex; align-items: center; min-height: 24px; padding: 0 8px; border-radius: 99px; font-size: 10px; font-weight: 800; white-space: nowrap; }
.member-row > .time-cell:first-of-type { min-width: 0; }
.status-present, .status-completed { color: var(--green-ink); background: var(--green-soft); }.status-absent, .status-blocked { color: var(--red); background: var(--red-soft); }.status-leave, .status-in-progress { color: var(--amber); background: var(--amber-soft); }.status-pending, .status-no-work { color: var(--muted); background: var(--gray-soft, #eef1f3); }
.status-working, .status-submitted { color: var(--green-ink); background: var(--green-soft); }.status-lunch-break, .status-personal-out { color: var(--amber); background: var(--amber-soft); }.status-checked-out { color: #006bd6; background: var(--teal-soft); }.status-on-leave, .status-not-arrived { color: var(--muted); background: #eef1f3; }
.status-sick-leave { color: var(--red); background: var(--red-soft); }.status-casual-leave, .status-annual-leave { color: #006bd6; background: var(--teal-soft); }.status-emergency-leave, .status-unpaid-leave, .status-other { color: var(--amber); background: var(--amber-soft); }
.status-on-time { color: var(--green-ink); background: var(--green-soft); }
.status-late-check-in, .status-late-return, .status-late-check-in-late-return { color: var(--amber); background: var(--amber-soft); }
.status-check-in-closed { color: var(--red); background: var(--red-soft); }
.status-approved, .status-working-day { color: var(--green-ink); background: var(--green-soft); }
.status-rejected { color: var(--red); background: var(--red-soft); }
.status-holiday, .status-office-closed { color: var(--amber); background: var(--amber-soft); }
.work-snippet { color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.row-action { color: var(--muted); }.row-action:hover { background: var(--gray-soft, #eef1f3); color: var(--ink); }
.coverage-content { padding: 20px 18px 22px; display: grid; grid-template-columns: 126px 1fr; align-items: center; gap: 22px; }
.donut { width: 124px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--green) 0deg, var(--green) var(--coverage-angle), #e7edef var(--coverage-angle)); position: relative; }
.donut::after { content: ""; position: absolute; width: 82px; height: 82px; border-radius: 50%; background: white; }.donut > div { position: relative; z-index: 1; text-align: center; }.donut strong, .donut span { display: block; }.donut strong { font-size: 21px; }.donut span { color: var(--muted); font-size: 9px; margin-top: 2px; }
.coverage-legend { display: grid; gap: 12px; }.legend-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 11px; }.legend-label { display: flex; align-items: center; gap: 8px; color: var(--muted); }.legend-dot { width: 8px; height: 8px; border-radius: 50%; }.legend-row strong { font-size: 12px; }
.activity-list { padding: 7px 18px 13px; }.activity-item { display: grid; grid-template-columns: 9px 1fr auto; gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px solid #edf1f2; }.activity-item:last-child { border-bottom: 0; }.activity-pin { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); margin-top: 5px; }.activity-item p { margin: 0; font-size: 11px; line-height: 1.45; }.activity-item time { font-size: 9px; color: var(--muted); white-space: nowrap; }
.today-leave-list { padding: 8px 18px 14px; }.today-leave-row { min-height: 50px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #edf1f2; }.today-leave-row:last-child { border-bottom: 0; }.today-leave-row strong, .today-leave-row small { display: block; }.today-leave-row strong { font-size: 11px; }.today-leave-row small { margin-top: 3px; color: var(--muted); font-size: 9px; }.no-leave-today { padding: 17px 0; }.no-leave-today strong, .no-leave-today small { display: block; }.no-leave-today strong { color: var(--green-ink); font-size: 12px; }.no-leave-today small { margin-top: 5px; color: var(--muted); font-size: 10px; }

.panel-flat, .team-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.toolbar { justify-content: flex-start; }.search-field { min-width: 230px; }.field { display: grid; gap: 6px; }.field span, .section-label { color: var(--muted); font-size: 10px; font-weight: 750; }.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: white; padding: 10px 11px; outline: none; }.field input, .field select { height: 40px; }.field textarea { resize: vertical; line-height: 1.45; }.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }.compact-field { min-width: 170px; }
.data-panel { box-shadow: none; }.table-scroll { overflow-x: auto; }.data-table { width: 100%; border-collapse: collapse; min-width: 1040px; }.data-table th { height: 43px; padding: 0 13px; background: #f6f8f8; color: var(--muted); font-size: 10px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }.data-table td { height: 57px; padding: 8px 13px; border-bottom: 1px solid #edf1f2; font-size: 11px; vertical-align: middle; }.data-table tr:last-child td { border-bottom: 0; }.data-table tr:hover td { background: #fbfcfc; }.table-member { display: flex; align-items: center; gap: 9px; min-width: 145px; }.table-member strong, .table-member small { display: block; }.table-member small { color: var(--muted); font-size: 9px; margin-top: 2px; }.empty-dash { color: #a4afb5; }.report-header { align-items: end; }.report-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }.report-table { min-width: 850px; }
.monthly-punctuality-panel { margin-bottom: 16px; box-shadow: none; }
.late-report-heading { align-items: flex-end; }
.late-report-actions { display: flex; align-items: flex-end; gap: 10px; }
.late-report-actions .secondary-button { min-height: 40px; }
.monthly-punctuality-list { padding: 6px 18px 12px; }
.punctuality-overview-row { min-height: 64px; display: grid; grid-template-columns: minmax(170px, 1fr) repeat(3, minmax(86px, auto)); align-items: center; gap: 14px; border-bottom: 1px solid #edf1f2; }
.punctuality-overview-row:last-child { border-bottom: 0; }
.punctuality-person { display: flex; align-items: center; gap: 10px; min-width: 0; }.punctuality-person strong, .punctuality-person small { display: block; }.punctuality-person strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }.punctuality-person small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.punctuality-metric { min-width: 86px; text-align: right; }.punctuality-metric span, .punctuality-metric strong { display: block; }.punctuality-metric span { color: var(--muted); font-size: 8px; text-transform: uppercase; }.punctuality-metric strong { margin-top: 4px; font-size: 14px; }
.punctuality-metric.on-time strong { color: var(--green-ink); }.punctuality-metric.late strong { color: var(--amber); }.punctuality-metric.cutoff strong { color: var(--red); }
.summary-cell { width: 250px; max-width: 250px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); }
.leave-heading { margin-bottom: 16px; }.leave-heading h2 { margin: 4px 0 6px; font-size: 21px; }.leave-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }.leave-form { margin-bottom: 14px; padding: 16px; display: grid; grid-template-columns: minmax(180px, 1fr) 170px 180px minmax(220px, 1.4fr) auto; gap: 12px; align-items: end; box-shadow: none; }.leave-reason-field { min-width: 0; }.leave-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 14px; }.leave-summary article { min-height: 92px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 8px; background: white; }.leave-summary span, .leave-summary strong, .leave-summary small { display: block; }.leave-summary span { color: var(--muted); font-size: 10px; font-weight: 700; }.leave-summary strong { margin-top: 6px; font-size: 24px; }.leave-summary small { margin-top: 5px; color: var(--muted); font-size: 9px; }.leave-table { min-width: 760px; }.remove-leave-button { font-size: 10px; }.empty-table-state { padding: 18px 0; color: var(--muted); text-align: center; }
.annual-overview-panel { margin-bottom: 16px; }.month-strip { display: grid; grid-template-columns: repeat(12, minmax(88px, 1fr)); overflow-x: auto; }.month-cell { min-width: 88px; padding: 14px 10px; border-right: 1px solid var(--line); text-align: center; }.month-cell:last-child { border-right: 0; }.month-cell span, .month-cell strong, .month-cell small { display: block; }.month-cell span { color: var(--muted); font-size: 9px; text-transform: uppercase; }.month-cell strong { margin-top: 7px; font-size: 15px; }.month-cell small { margin-top: 4px; color: var(--teal); font-size: 9px; }
.overall-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }.overall-heading h2 { margin: 3px 0 5px; font-size: 20px; }.overall-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }
.report-reader-heading { margin-bottom: 15px; }.report-reader-heading h2 { margin: 3px 0 5px; font-size: 20px; }.report-reader-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }.work-report-toolbar { align-items: end; }.work-report-summary { min-height: 40px; margin-bottom: 12px; display: flex; align-items: center; color: var(--muted); font-size: 11px; }.work-report-summary strong { margin-right: 4px; color: var(--ink); }.work-report-list { display: grid; gap: 10px; }.work-report-card { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }.work-report-card-header { min-height: 62px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); background: #fafbfc; }.report-person { display: flex; align-items: center; gap: 10px; }.report-person strong, .report-person small { display: block; }.report-person small { margin-top: 3px; color: var(--muted); font-size: 9px; }.report-date-status { display: flex; align-items: center; gap: 9px; }.report-date-status time { color: var(--muted); font-size: 10px; }.work-report-card-body { padding: 15px; display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 22px; }.report-copy h3 { margin: 0 0 7px; font-size: 10px; color: var(--muted); text-transform: uppercase; }.report-copy p { margin: 0; font-size: 12px; line-height: 1.6; white-space: pre-wrap; }.report-notes { margin-top: 12px !important; padding-top: 10px; border-top: 1px solid var(--line); color: var(--muted); }.report-time-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }.report-time-stat { padding: 10px; border: 1px solid var(--line); border-radius: 6px; background: #fbfcfd; }.report-time-stat span, .report-time-stat strong { display: block; }.report-time-stat span { color: var(--muted); font-size: 8px; text-transform: uppercase; }.report-time-stat strong { margin-top: 4px; font-size: 13px; }.no-report-state { padding: 38px 18px; border: 1px dashed #cfd7dd; border-radius: 8px; background: white; text-align: center; color: var(--muted); font-size: 12px; }

.team-intro { align-items: center; }.team-intro h2 { margin: 0; font-size: 19px; }.team-intro p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }.normal-hours { display: flex; align-items: center; gap: 9px; background: white; border: 1px solid var(--line); border-radius: 6px; padding: 8px 11px; font-size: 11px; }.normal-hours span { color: var(--muted); }.normal-hours input { width: 60px; height: 30px; border: 1px solid var(--line); border-radius: 5px; text-align: center; font-weight: 800; }.admin-security-panel { margin-bottom: 14px; padding: 16px 18px; display: grid; grid-template-columns: minmax(220px, 1fr) minmax(210px, 300px) auto; gap: 14px; align-items: end; box-shadow: none; }.admin-security-panel h3 { margin: 4px 0; font-size: 15px; }.admin-security-panel p:last-child { margin: 0; color: var(--muted); font-size: 10px; }.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }.team-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 17px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: start; }.team-card .avatar { width: 42px; height: 42px; margin-top: 18px; }.team-account-fields { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px; }.team-account-fields label span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 8px; font-weight: 750; text-transform: uppercase; }.team-card input { min-width: 0; width: 100%; height: 36px; border: 1px solid var(--line); border-radius: 5px; background: #fbfdff; font-weight: 700; padding: 0 9px; }.team-card input:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }.member-id { grid-column: 1 / -1; color: var(--muted); font-size: 9px; margin-top: 0; }.active-indicator { width: 9px; height: 9px; margin-top: 24px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px var(--green-soft); }
.settings-row { display: flex; flex-wrap: wrap; gap: 8px; }.settings-row .normal-hours input[type="time"] { width: 90px; }.daily-report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.report-submit-state { color: var(--muted); font-size: 10px; font-weight: 750; }.checkout-shortcut { color: var(--red); background: var(--red-soft); border-color: #efc3bf; }
.attendance-policy { margin-bottom: 14px; padding: 15px 18px; display: flex; align-items: flex-start; gap: 12px; border-color: #b9d8fb; background: #f3f9ff; box-shadow: none; }
.attendance-policy > svg { width: 21px; height: 21px; margin-top: 2px; color: var(--brand-blue); flex: 0 0 auto; }
.attendance-policy strong { font-size: 12px; }
.attendance-policy p { margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.check-in-now-button { color: var(--green-ink); border-color: #9edca2; background: var(--green-soft); }
.check-in-now-button:hover { color: #0e6f14; border-color: var(--brand-green); background: #dcf8dd; }
.account-heading { max-width: 620px; margin: 0 auto 16px; }
.account-heading h2 { margin: 4px 0 6px; font-size: 22px; }
.account-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }
.account-password-card { width: min(620px, 100%); margin: 0 auto; padding: 24px; display: grid; gap: 16px; box-shadow: none; }
.account-security-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; color: var(--brand-blue); background: var(--teal-soft); }
.account-security-icon svg { width: 24px; height: 24px; }
.account-password-card .primary-button { justify-self: start; min-height: 44px; }
.password-guidance { margin: -3px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.workflow-heading { margin-bottom: 16px; }
.workflow-heading h2 { margin: 4px 0 6px; font-size: 22px; }
.workflow-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }
.workflow-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 16px; }
.workflow-form { padding: 18px; display: grid; gap: 13px; box-shadow: none; }
.workflow-form-title { display: flex; align-items: center; gap: 10px; padding-bottom: 4px; }
.workflow-form-title > svg, .request-kind-icon { width: 38px; height: 38px; padding: 9px; border-radius: 9px; color: var(--brand-blue); background: var(--teal-soft); flex: 0 0 auto; }
.workflow-form-title strong, .workflow-form-title small { display: block; }.workflow-form-title strong { font-size: 13px; }.workflow-form-title small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.workflow-form .primary-button { justify-self: start; }
.request-list-panel { box-shadow: none; }
.request-list, .calendar-list, .history-list { padding: 0 18px 10px; }
.request-card { min-height: 86px; padding: 14px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid #edf1f2; }
.request-card:last-child, .calendar-row:last-child, .history-row:last-child { border-bottom: 0; }
.request-card-main { min-width: 0; display: flex; align-items: flex-start; gap: 11px; }
.request-kind-icon { display: grid; place-items: center; padding: 0; }
.request-kind-icon svg { width: 18px; height: 18px; }
.request-title-line { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }.request-title-line strong { font-size: 12px; }
.request-card-main small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }
.request-card-main p { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }.request-card-main p b { color: var(--ink); }
.request-actions { display: flex; gap: 7px; flex: 0 0 auto; }.request-actions .secondary-button { min-height: 34px; padding: 0 10px; font-size: 9px; }.approve-request { color: var(--green-ink); border-color: #a7dbaa; background: var(--green-soft); }.reject-request { color: var(--red); border-color: #efc3bf; background: var(--red-soft); }
.empty-workflow { min-height: 150px; display: grid; place-content: center; justify-items: center; gap: 6px; color: var(--muted); text-align: center; }.empty-workflow svg { width: 26px; height: 26px; color: #9aabb5; }.empty-workflow strong { color: var(--ink); font-size: 12px; }.empty-workflow span { font-size: 9px; }
.calendar-admin-form { margin-bottom: 14px; padding: 16px; display: grid; grid-template-columns: 170px minmax(220px, 1fr) 210px auto; align-items: end; gap: 12px; box-shadow: none; }
.weekly-off-panel { margin-bottom: 14px; padding: 15px 17px; display: flex; align-items: center; gap: 16px; box-shadow: none; }.weekly-off-panel > div:first-child { margin-right: auto; }.weekly-off-panel strong, .weekly-off-panel small { display: block; }.weekly-off-panel strong { font-size: 12px; }.weekly-off-panel small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.weekday-options { display: flex; flex-wrap: wrap; gap: 5px; }.weekday-option input { position: absolute; opacity: 0; pointer-events: none; }.weekday-option span { min-width: 38px; height: 30px; padding: 0 7px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); background: white; font-size: 9px; font-weight: 700; cursor: pointer; }.weekday-option input:checked + span { color: #006bd6; border-color: #8fc8ff; background: var(--teal-soft); }
.calendar-row { min-height: 68px; padding: 10px 0; display: grid; grid-template-columns: 48px minmax(180px, 1fr) auto 38px; align-items: center; gap: 12px; border-bottom: 1px solid #edf1f2; }.calendar-date-box { width: 44px; height: 44px; display: grid; place-content: center; border-radius: 8px; color: #006bd6; background: var(--teal-soft); text-align: center; }.calendar-date-box strong { font-size: 14px; }.calendar-date-box span { font-size: 8px; text-transform: uppercase; }.calendar-row > div:nth-child(2) strong, .calendar-row > div:nth-child(2) small { display: block; }.calendar-row > div:nth-child(2) strong { font-size: 11px; }.calendar-row > div:nth-child(2) small { margin-top: 4px; color: var(--muted); font-size: 9px; }
.backup-panel { margin-bottom: 14px; padding: 18px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; box-shadow: none; }.backup-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; color: var(--green-ink); background: var(--green-soft); }.backup-icon svg { width: 23px; height: 23px; }.backup-panel strong { font-size: 13px; }.backup-panel p { margin: 4px 0 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.history-row { min-height: 74px; padding: 12px 0; display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; align-items: start; gap: 11px; border-bottom: 1px solid #edf1f2; }.history-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; color: var(--brand-blue); background: var(--teal-soft); }.history-mark svg { width: 16px; height: 16px; }.history-row strong, .history-row small { display: block; }.history-row strong { font-size: 11px; }.history-row small { margin-top: 4px; color: var(--muted); font-size: 8px; }.history-row p { margin: 6px 0 0; color: var(--muted); font-size: 10px; }.history-row > span { color: var(--muted); font-size: 8px; }
.late-request-box { max-width: 500px; margin: 12px auto 0; padding: 11px; display: flex; align-items: end; gap: 9px; border: 1px solid #f0d39b; border-radius: 7px; background: #fffaf0; text-align: left; }.late-request-box label { flex: 1; display: grid; gap: 5px; }.late-request-box label span { color: var(--amber); font-size: 8px; font-weight: 800; }.late-request-box input { width: 100%; height: 36px; border: 1px solid var(--line); border-radius: 5px; padding: 0 9px; }.late-request-pending { width: fit-content; margin: 12px auto 0; padding: 9px 11px; display: inline-flex; align-items: center; gap: 7px; border-radius: 6px; color: var(--amber); background: var(--amber-soft); font-size: 9px; font-weight: 700; }.late-request-pending svg { width: 15px; height: 15px; }
.report-reminder { margin-bottom: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; border: 1px solid #f0d39b; border-radius: 6px; color: var(--amber); background: var(--amber-soft); font-size: 9px; font-weight: 700; }.report-reminder svg { width: 16px; height: 16px; flex: 0 0 auto; }

.leave-form { grid-template-columns: minmax(150px, 1fr) 150px 150px 170px minmax(200px, 1.3fr) auto; }
.schedule-heading { margin-bottom: 16px; }.schedule-heading h2 { margin: 4px 0 6px; font-size: 22px; }.schedule-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }
.schedule-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px; }
.schedule-form { padding: 18px; display: grid; gap: 13px; box-shadow: none; }.schedule-form .primary-button { justify-self: start; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.schedule-list-panel { box-shadow: none; }
.office-closed-message { color: var(--amber) !important; font-weight: 700; }
.screenshot-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }.screenshot-heading h2 { margin: 4px 0 6px; font-size: 22px; }.screenshot-heading p:last-child { margin: 0; color: var(--muted); font-size: 11px; }
.retention-badge { min-height: 36px; padding: 0 11px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #a7dbaa; border-radius: 7px; color: var(--green-ink); background: var(--green-soft); font-size: 9px; font-weight: 750; }.retention-badge svg { width: 15px; height: 15px; }
.screenshot-toolbar { align-items: flex-end; }.screenshot-toolbar .secondary-button { min-height: 40px; }
.screenshot-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }.screenshot-summary article { padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; background: white; }.screenshot-summary span, .screenshot-summary strong { display: block; }.screenshot-summary span { color: var(--muted); font-size: 9px; }.screenshot-summary strong { margin-top: 4px; font-size: 17px; }
.screenshot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }.screenshot-card { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: white; }.screenshot-card > a { aspect-ratio: 16 / 9; display: block; overflow: hidden; background: #e9eef1; }.screenshot-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .25s ease; }.screenshot-card:hover img { transform: scale(1.025); }.screenshot-card-body { min-height: 58px; padding: 10px 11px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }.screenshot-card-body strong, .screenshot-card-body small { display: block; }.screenshot-card-body strong { font-size: 11px; }.screenshot-card-body small { margin-top: 3px; color: var(--muted); font-size: 8px; }.screenshot-loading { grid-column: 1 / -1; min-height: 180px; display: grid; place-content: center; justify-items: center; gap: 9px; color: var(--muted); font-size: 10px; }.screenshot-loading svg { animation: spin .8s linear infinite; }.screenshot-empty { grid-column: 1 / -1; min-height: 210px; display: grid; place-content: center; justify-items: center; gap: 8px; padding: 26px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: 8px; background: white; }.screenshot-empty svg { width: 32px; height: 32px; color: #7c93a8; }.screenshot-empty strong { color: var(--ink); font-size: 13px; }.screenshot-empty span { max-width: 440px; font-size: 10px; line-height: 1.6; }
.capture-retention-badge { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(41,199,104,.22); border-radius: 12px; background: linear-gradient(135deg, #f4fbff, #eefbf3); }.capture-retention-badge svg { width: 20px; color: #21ad5a; }.capture-retention-badge strong, .capture-retention-badge small { display: block; }.capture-retention-badge strong { font-size: 10px; }.capture-retention-badge small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.verification-card-placeholder { aspect-ratio: 16 / 9; display: grid; place-content: center; justify-items: center; gap: 8px; padding: 20px; text-align: center; background: #f7f9fa; color: var(--muted); }.verification-card-placeholder svg { width: 28px; height: 28px; }.verification-card-placeholder strong { color: var(--ink); font-size: 12px; }.verification-card-placeholder span { font-size: 9px; }.verification-status-icon { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; }.verification-status-icon.completed { color: #078628; background: #e4f8e8; }.verification-status-icon.missed { color: #c4372c; background: #ffe9e7; }.verification-status-icon.secure { color: #a45e00; background: #fff2d8; }.verification-status-icon.pending { color: #006bd6; background: #e5f2ff; }
.verification-dialog { width: min(510px, calc(100vw - 28px)); border: 0; border-radius: 14px; padding: 0; box-shadow: 0 24px 80px #0b243f4d; }.verification-dialog::backdrop { background: #102536a8; backdrop-filter: blur(4px); }.verification-dialog-body { padding: 34px; text-align: center; }.verification-dialog-body h2 { margin: 7px 0 10px; font-size: 24px; }.verification-dialog-body > p:not(.eyebrow) { margin: 0 auto; max-width: 410px; color: var(--muted); font-size: 11px; line-height: 1.65; }.verification-pulse { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--brand-blue); box-shadow: 0 0 0 9px #e2f1ff; animation: verificationPulse 1.8s ease-in-out infinite; }.verification-pulse svg { width: 27px; height: 27px; }.verification-countdown { width: 150px; margin: 22px auto 18px; padding: 11px; border: 1px solid var(--line); border-radius: 9px; background: #f7fafb; }.verification-countdown span, .verification-countdown strong { display: block; }.verification-countdown span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }.verification-countdown strong { margin-top: 4px; color: var(--brand-blue); font-size: 22px; font-variant-numeric: tabular-nums; }.verification-actions { display: flex; justify-content: center; gap: 9px; }.verification-dialog-body > small { display: block; margin-top: 16px; color: var(--muted); font-size: 8px; }.verification-dialog.capture-busy .verification-actions { pointer-events: none; opacity: .6; }
@keyframes verificationPulse { 50% { box-shadow: 0 0 0 14px #e2f1ff80; transform: scale(1.03); } }

.activity-monitor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px; }.activity-device-panel, .activity-category-panel, .activity-log-panel { box-shadow: none; }.activity-device-list, .activity-category-list, .activity-log-list { padding: 4px 18px 12px; }.activity-monitor-row { min-height: 58px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #edf1f2; }.activity-monitor-row:last-child { border-bottom: 0; }.activity-monitor-row > div { min-width: 0; flex: 1; }.activity-monitor-row strong, .activity-monitor-row small { display: block; }.activity-monitor-row strong { font-size: 11px; }.activity-monitor-row small { margin-top: 3px; color: var(--muted); font-size: 9px; }.activity-monitor-row b { font-size: 12px; }.live-dot.offline { background: #a4afb5; box-shadow: none; }
.activity-log-row { min-height: 62px; display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; align-items: center; gap: 10px; border-bottom: 1px solid #edf1f2; }.activity-log-row:last-child { border-bottom: 0; }.activity-app-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; color: var(--brand-blue); background: var(--teal-soft); }.activity-app-icon svg { width: 16px; height: 16px; }.activity-log-row strong, .activity-log-row small { display: block; }.activity-log-row strong { font-size: 11px; }.activity-log-row small { margin-top: 3px; color: var(--muted); font-size: 9px; }.activity-log-row time { color: var(--muted); font-size: 9px; }

@media (max-width: 900px) {
  .calendar-admin-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weekly-off-panel { align-items: flex-start; flex-direction: column; }
  .schedule-form-grid { grid-template-columns: 1fr; }
  .leave-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .activity-monitor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .workflow-form-grid { grid-template-columns: 1fr; }
  .request-card { align-items: stretch; flex-direction: column; }.request-actions { width: 100%; }.request-actions button { flex: 1; }
  .calendar-admin-form { grid-template-columns: 1fr; }.calendar-admin-form .primary-button { width: 100%; }
  .leave-form, .three-col { grid-template-columns: 1fr; }.leave-form .primary-button, .schedule-form .primary-button { width: 100%; }
  .screenshot-heading { align-items: flex-start; flex-direction: column; }.screenshot-summary { grid-template-columns: repeat(2, 1fr); }.screenshot-grid { grid-template-columns: 1fr; }
  .calendar-row { grid-template-columns: 44px minmax(0, 1fr) auto; }.calendar-row > .icon-button { grid-column: 3; }.calendar-row > .status-badge { display: none; }
  .backup-panel { grid-template-columns: auto 1fr; }.backup-panel .primary-button { grid-column: 1 / -1; width: 100%; }
  .late-request-box { align-items: stretch; flex-direction: column; }.late-request-box .secondary-button { width: 100%; }
}

.entry-dialog { width: min(720px, calc(100vw - 30px)); max-height: calc(100vh - 30px); padding: 0; border: 0; border-radius: 8px; box-shadow: 0 28px 70px rgba(9, 37, 49, .28); color: var(--ink); }.entry-dialog::backdrop { background: rgba(10, 34, 45, .55); backdrop-filter: blur(2px); }.dialog-header, .dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 20px; }.dialog-header { border-bottom: 1px solid var(--line); }.dialog-header h2 { margin: 3px 0 0; font-size: 18px; }.dialog-body { padding: 18px 20px; display: grid; gap: 16px; overflow-y: auto; max-height: calc(100vh - 190px); }.dialog-footer { border-top: 1px solid var(--line); }.dialog-footer > div { display: flex; gap: 8px; }.form-grid { display: grid; gap: 12px; }.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }.four-col { grid-template-columns: repeat(4, minmax(0, 1fr)); }.section-label { padding-top: 3px; text-transform: uppercase; }.hours-preview { min-height: 48px; border: 1px solid #b9dcd5; background: var(--teal-soft); border-radius: 6px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }.hours-preview span { color: var(--teal); font-size: 11px; font-weight: 650; }.hours-preview strong { color: var(--teal); font-size: 15px; }.danger-text-button { border: 0; background: transparent; color: var(--red); font-weight: 700; padding: 8px 0; }
.toast { position: fixed; right: 22px; bottom: 22px; transform: translateY(20px); opacity: 0; pointer-events: none; padding: 12px 15px; border-radius: 6px; background: #162a36; color: white; font-size: 12px; box-shadow: var(--shadow); transition: .2s ease; z-index: 100; }.toast.show { transform: none; opacity: 1; }
.drawer-backdrop { display: none; }

@media (max-width: 1120px) {
  .stats-grid, .report-stats { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; }.right-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: 1fr; }
  .checkin-layout { grid-template-columns: 1fr; }.member-picker { grid-template-columns: repeat(5, minmax(0, 1fr)); }.today-board-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 18px; }
  .leave-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }.leave-form .primary-button { align-self: end; }
}

@media (max-width: 760px) {
  .login-screen { grid-template-columns: 1fr; }.login-aside { display: none; }.login-card { width: min(100% - 24px, 480px); padding: 26px 22px; }.login-brand { margin-bottom: 34px; }
  .app-shell { display: block; }.sidebar { position: fixed; left: 0; transform: translateX(-100%); width: 252px; transition: transform .22s ease; }.sidebar.open { transform: none; }.drawer-backdrop { position: fixed; inset: 0; background: rgba(10,34,45,.48); z-index: 35; }.drawer-backdrop.show { display: block; }
  .menu-button { display: grid; }.topbar { min-height: 76px; padding: 12px 14px; }.topbar h1 { font-size: 18px; }.live-clock { display: none; }.primary-button { padding: 0 11px; }.topbar .primary-button { font-size: 0; width: 40px; padding: 0; }.topbar .primary-button span { font-size: 21px; }
  .page-wrap { padding: 16px 12px 28px; }.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-bottom: 12px; }.stat-card { min-height: 94px; padding: 13px; }.stat-card strong { font-size: 22px; }.stat-visual { width: 38px; height: 38px; }
  .overview-grid { gap: 12px; }.right-stack { grid-template-columns: 1fr; gap: 12px; }.member-row { grid-template-columns: minmax(140px, 1fr) 80px 34px; min-height: 62px; padding-left: 13px; }.member-row .time-cell:nth-of-type(2), .member-row .hours-cell, .member-row .work-snippet { display: none; }.member-row .status-badge { justify-self: end; }.coverage-content { grid-template-columns: 116px 1fr; }.donut { width: 112px; }
  .checkin-layout { gap: 12px; }.checkin-panel { padding: 16px 14px; }.checkin-header { align-items: center; }.checkin-header h2 { font-size: 19px; }.checkin-header > div > p:last-child { max-width: 220px; }.checkin-date { min-width: 92px; padding: 9px; }.member-picker { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 12px 0 13px; }.worker-summary { padding: 10px 12px; }.next-action { padding: 17px 12px; }.main-punch-button { min-width: min(250px, 100%); width: 100%; }.time-clock-face { grid-template-columns: 1fr 142px 1fr; gap: 8px; }.timer-action { width: 142px; }.clock-readout strong, .tracked-readout strong { font-size: 13px; }.punch-timeline { padding: 15px 8px 16px; }.timeline-step { padding: 0 2px; }.timeline-step strong { font-size: 8px; }.personal-report-footer { align-items: stretch; flex-direction: column; }.work-status-field { min-width: 0; }.today-board-list { display: block; }
  .toolbar { align-items: stretch; overflow-x: auto; padding-bottom: 3px; }.compact-field { min-width: 150px; }.search-field { min-width: 180px; }.report-header { align-items: flex-end; }.report-stats { gap: 9px; }
  .punctuality-overview-row { grid-template-columns: minmax(130px, 1fr) repeat(2, auto); gap: 9px; }.punctuality-metric { min-width: 62px; }.punctuality-metric.on-time { display: none; }
  .late-report-heading, .late-report-actions { align-items: stretch; flex-direction: column; }.late-report-actions .compact-field { min-width: 0; }.late-report-actions .secondary-button { width: 100%; }
  .team-intro { align-items: stretch; flex-direction: column; }.normal-hours { justify-content: space-between; }.admin-security-panel { grid-template-columns: 1fr; }.team-grid { grid-template-columns: 1fr; gap: 9px; }.team-account-fields { grid-template-columns: 1fr; }.daily-report-grid { grid-template-columns: 1fr; }
  .simple-checkin-layout { max-width: none; }.simple-member-select { max-width: none; }.overall-heading { align-items: stretch; flex-direction: column; }.overall-heading .secondary-button { align-self: flex-start; }
  .work-report-toolbar { overflow: visible; flex-wrap: wrap; }.work-report-card-body { grid-template-columns: 1fr; gap: 14px; }.report-date-status { align-items: flex-end; flex-direction: column; }.break-action-row { align-items: stretch; flex-direction: column; }.break-button { width: 100%; }
  .leave-form { grid-template-columns: 1fr; }.leave-summary { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }.leave-summary article { min-height: 82px; padding: 12px; }
  .four-col { grid-template-columns: repeat(2, 1fr); }.entry-dialog { width: calc(100vw - 16px); max-height: calc(100vh - 16px); }.dialog-header, .dialog-footer { padding: 14px; }.dialog-body { padding: 14px; max-height: calc(100vh - 164px); }.dialog-footer { align-items: center; }.dialog-footer #cancelDialogButton { display: none; }
  .toast { left: 12px; right: 12px; bottom: 12px; text-align: center; }
}

@media (max-width: 430px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }.stat-card { display: block; }.stat-visual { display: none; }.stat-card small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.panel-heading { padding: 14px; }.coverage-content { padding: 16px 14px; gap: 14px; }.two-col { grid-template-columns: 1fr; }
}

.break-action-row input { width: 100%; height: 36px; min-width: 0; border: 1px solid var(--line); border-radius: 5px; padding: 0 8px; background: white; }
.break-action-row input:focus { border-color: var(--teal); outline: 0; box-shadow: 0 0 0 3px var(--teal-soft); }
.punch-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.break-button, .undo-action-button, .danger-text-button, .main-punch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.break-button svg, .undo-action-button svg, .danger-text-button svg, .main-punch-button svg { flex: 0 0 auto; }
.break-button svg, .undo-action-button svg, .danger-text-button svg { width: 15px; height: 15px; }
.main-punch-button svg { width: 18px; height: 18px; }

/* Poppins interaction and icon polish */
button { -webkit-tap-highlight-color: transparent; }
button, a, .member-pick, .team-card, .work-report-card {
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
button:active:not(:disabled) { transform: translateY(1px) scale(.97); transition-duration: .08s; }
button:focus-visible, a:focus-visible { outline: 3px solid rgba(0,128,255,.2); outline-offset: 2px; }
button svg, .nav-symbol svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  pointer-events: none;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), filter .22s ease;
}
.nav-item { font-weight: 600; }
.nav-item:hover { transform: translateX(3px); }
.nav-item:hover .nav-symbol svg { transform: scale(1.14) rotate(-4deg); }
.nav-symbol { font-size: 0; }
.primary-button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,128,255,.24); }
.primary-button:hover svg { transform: scale(1.12) rotate(5deg); }
.secondary-button:hover:not(:disabled) { border-color: #b7c8d2; transform: translateY(-2px); box-shadow: 0 6px 14px rgba(22,42,54,.08); }
.secondary-button:hover svg { transform: translateY(2px); }
.icon-button:hover { transform: translateY(-2px); }
.icon-button:hover svg { transform: scale(1.15) rotate(-6deg); }
.timer-action:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 15px 34px rgba(0,128,255,.3), 0 0 0 5px rgba(50,205,50,.12);
}
.timer-action:active:not(:disabled) { transform: scale(.96); }
.timer-icon { display: grid; place-items: center; }
.timer-icon svg { width: 22px; height: 22px; }
.timer-action:hover .timer-icon svg { transform: scale(1.14); }
.text-button { font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.text-button:hover { color: #0064c8; transform: translateX(2px); }
.text-button:hover svg { transform: translateX(4px); }
.break-button:hover:not(:disabled), .undo-action-button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(22,42,54,.08); }
.member-pick:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(22,42,54,.08); }
.team-card:hover, .work-report-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22,42,54,.08); }

/* Professional MR Graphar gradient theme */
:root {
  --ink: #10233f;
  --muted: #65758b;
  --line: #dbe6f3;
  --surface: rgba(255, 255, 255, .96);
  --canvas: #f3f8ff;
  --navy: #12345a;
  --navy-2: #081f3d;
  --brand-blue: #087cff;
  --brand-green: #29c768;
  --teal: #087cff;
  --teal-soft: #e9f3ff;
  --blue: #087cff;
  --blue-soft: #e9f3ff;
  --green: #29c768;
  --green-ink: #148342;
  --green-soft: #e9f9ef;
  --brand-gradient: linear-gradient(135deg, #087cff 0%, #3478e5 54%, #29c768 100%);
  --brand-gradient-deep: linear-gradient(145deg, #071f3c 0%, #0b4fa5 55%, #159b62 115%);
  --shadow: 0 14px 34px rgba(22, 65, 120, .08);
  --shadow-hover: 0 20px 44px rgba(20, 82, 153, .14);
}

body {
  background:
    radial-gradient(circle at 88% 5%, rgba(8, 124, 255, .09), transparent 28%),
    radial-gradient(circle at 9% 92%, rgba(41, 199, 104, .07), transparent 26%),
    var(--canvas);
}

.app-loading {
  background:
    radial-gradient(circle at 50% 42%, rgba(8, 124, 255, .10), transparent 28%),
    linear-gradient(145deg, #f8fbff, #eef6ff);
}

.login-screen {
  background:
    radial-gradient(circle at 15% 15%, rgba(8, 124, 255, .10), transparent 30%),
    linear-gradient(145deg, #f9fcff 0%, #eef6ff 100%);
}

.login-card {
  border-color: rgba(139, 169, 205, .35);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 28px 80px rgba(11, 55, 108, .13);
}

.login-aside {
  background: var(--brand-gradient-deep);
}

.login-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(68, 169, 255, .30), transparent 32%),
    linear-gradient(120deg, transparent 45%, rgba(41, 199, 104, .10));
  pointer-events: none;
}

.login-aside::after {
  box-shadow: 0 0 0 70px rgba(41, 199, 104, .10), 0 0 0 140px rgba(255,255,255,.04);
}

.aside-logo {
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 18px 45px rgba(0, 20, 50, .28);
}

.sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(247,251,255,.98));
  border-right-color: rgba(160, 184, 212, .38);
  box-shadow: 10px 0 35px rgba(20, 65, 120, .035);
}

.nav-item { border-radius: 10px; }
.nav-item:hover {
  color: #075fbd;
  background: linear-gradient(90deg, rgba(8,124,255,.08), rgba(41,199,104,.05));
}
.nav-item.active {
  color: #075fbd;
  background: linear-gradient(90deg, rgba(8,124,255,.14), rgba(41,199,104,.09));
  box-shadow: inset 3px 0 0 var(--brand-green), 0 7px 18px rgba(8,124,255,.07);
}

.topbar {
  background: rgba(255, 255, 255, .88);
  border-bottom-color: rgba(160, 184, 212, .34);
  box-shadow: 0 8px 28px rgba(20, 65, 120, .04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.live-clock {
  border-color: rgba(139, 169, 205, .38);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f5faff);
  box-shadow: 0 8px 22px rgba(18, 72, 132, .06);
}

.primary-button,
.main-punch-button {
  border-color: transparent;
  background: var(--brand-gradient);
  box-shadow: 0 10px 24px rgba(8, 124, 255, .22);
}
.primary-button:hover:not(:disabled),
.main-punch-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #006fe6 0%, #276cda 52%, #20b85d 100%);
  box-shadow: 0 14px 30px rgba(8, 124, 255, .28);
}

.secondary-button {
  border-color: rgba(139, 169, 205, .42);
  background: linear-gradient(135deg, #fff, #f7fbff);
}

.panel,
.stat-card,
.team-card,
.work-report-card,
.worker-station {
  border-color: rgba(139, 169, 205, .32);
  background: var(--surface);
}

.panel,
.stat-card,
.team-card,
.work-report-card { border-radius: 14px; }

.stat-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(20, 65, 120, .06);
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand-gradient);
}
.stat-card:hover,
.team-card:hover,
.work-report-card:hover {
  border-color: rgba(8, 124, 255, .26);
  box-shadow: var(--shadow-hover);
}

.panel-heading,
.work-report-card-header {
  background: linear-gradient(100deg, rgba(8,124,255,.045), rgba(41,199,104,.025), rgba(255,255,255,.45));
}

.avatar,
.avatar-admin {
  color: #076acb;
  background: linear-gradient(135deg, #e8f3ff, #e8faef);
  box-shadow: inset 0 0 0 1px rgba(8, 124, 255, .08);
}

.stat-visual,
.account-security-icon,
.request-kind-icon,
.workflow-form-title > svg,
.history-mark,
.activity-app-icon {
  border: 1px solid rgba(8, 124, 255, .08);
  background: linear-gradient(135deg, #e8f3ff, #e8faef);
}

.timer-action {
  border-color: rgba(41, 199, 104, .95);
  background: var(--brand-gradient);
  box-shadow: 0 14px 34px rgba(8,124,255,.25), 0 0 0 5px rgba(41,199,104,.08), inset 0 0 0 1px rgba(255,255,255,.28);
}
.timer-action:hover:not(:disabled) {
  background: linear-gradient(135deg, #006fe6, #2873de 54%, #20b85d);
  box-shadow: 0 18px 42px rgba(8,124,255,.32), 0 0 0 7px rgba(41,199,104,.11);
}

input,
select,
textarea {
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(8, 124, 255, .72) !important;
  box-shadow: 0 0 0 4px rgba(8, 124, 255, .10) !important;
  outline: 0;
}

.text-button { color: #0876eb; }
.toast { background: var(--brand-gradient-deep); }

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

.attendance-automation-dialog {
  width: min(470px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--text);
  background: transparent;
  box-shadow: 0 30px 90px rgba(7, 35, 70, .28);
}
.attendance-automation-dialog::backdrop {
  background: rgba(7, 28, 54, .62);
  backdrop-filter: blur(5px);
}
.attendance-automation-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  text-align: center;
  background: linear-gradient(155deg, #fff 0%, #f4f9ff 72%, #eefaf3 100%);
  border: 1px solid rgba(255, 255, 255, .75);
}
.attendance-automation-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-gradient);
}
.attendance-automation-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 18px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 14px 28px rgba(8, 124, 255, .22);
}
.attendance-automation-icon svg { width: 30px; height: 30px; }
.attendance-automation-card h2 { margin: 6px 0 10px; font-size: 25px; }
.attendance-automation-card > p:not(.eyebrow):not(.attendance-automation-note) { margin: 0 auto; max-width: 370px; color: var(--muted); line-height: 1.65; }
.attendance-automation-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 13px;
  padding: 14px 17px;
  border: 1px solid rgba(8, 124, 255, .15);
  border-radius: 13px;
  background: rgba(255, 255, 255, .78);
  color: var(--muted);
}
.attendance-automation-countdown strong { color: #087cff; font-size: 22px; font-variant-numeric: tabular-nums; }
.attendance-automation-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0 0 24px; color: #5b7288; font-size: 12px; }
.attendance-automation-note svg { width: 15px; color: #22b85b; }
.attendance-automation-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.attendance-automation-actions button { justify-content: center; min-height: 47px; }

@media (max-width: 520px) {
  .attendance-automation-card { padding: 28px 20px 22px; }
  .attendance-automation-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
