:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-alt: #0f172a;
    --text: #18212f;
    --muted: #6b7280;
    --line: #dbe4f0;
    --primary: #0f766e;
    --primary-dark: #115e59;
    --success-bg: #dcfce7;
    --success-text: #166534;
    --warning-bg: #fef3c7;
    --warning-text: #92400e;
    --danger-bg: #fee2e2;
    --danger-text: #b91c1c;
    --neutral-bg: #e2e8f0;
    --neutral-text: #334155;
    --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    background:
            radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 25%),
            linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-shell {
    width: min(100%, 1080px);
}

.login-panel {
    width: min(100%, 460px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(219, 228, 240, 0.9);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.login-panel h1,
.page-header h1,
.sidebar h2,
.panel h2 {
    margin: 8px 0 0;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
}

.login-copy,
.page-header p,
.login-help {
    color: var(--muted);
}

.section-copy {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.login-form,
.settings-form,
.filter-form,
.upload-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

label {
    display: grid;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.toggle-field {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.toggle-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    background: #fff;
}

select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    background: #fff;
}

textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    resize: vertical;
}

.editor-toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 8px;
}

.editor-button {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
}

.editor-help {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.editor-help code {
    background: #f3f7fb;
    border-radius: 8px;
    padding: 2px 6px;
    font-size: 12px;
}

.notice-preview-card {
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fafcfb;
    padding: 14px 16px;
}

.notice-preview-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
}

.notice-preview-body {
    display: grid;
    gap: 8px;
    color: var(--text);
    line-height: 1.6;
}

.notice-preview-body p {
    margin: 0;
}

.notice-preview-heading {
    font-size: 15px;
    font-weight: 800;
}

.notice-preview-bullet {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.notice-preview-bullet span {
    color: var(--primary);
    font-weight: 800;
}

.notice-preview-bullet p {
    flex: 1;
}

.notice-preview-body strong {
    font-weight: 800;
}

.notice-preview-body a {
    color: var(--primary);
    text-decoration: underline;
}

.notice-preview-empty {
    color: var(--muted);
}

input:focus {
    outline: 2px solid rgba(15, 118, 110, 0.18);
    border-color: var(--primary);
}

select:focus {
    outline: 2px solid rgba(15, 118, 110, 0.18);
    border-color: var(--primary);
}

textarea:focus {
    outline: 2px solid rgba(15, 118, 110, 0.18);
    border-color: var(--primary);
}

.primary-button,
.secondary-button {
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.full-width {
    width: 100%;
}

.app-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.sidebar {
    background:
            linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9)),
            linear-gradient(135deg, #0f766e, #0f172a);
    color: #fff;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.sidebar form {
    margin-top: auto;
}

.nav-menu {
    display: grid;
    gap: 10px;
}

.nav-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.nav-menu a.active,
.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.content {
    padding: 40px;
    display: grid;
    gap: 24px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
}

.page-header-actions {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-link {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.stat-card,
.panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 228, 240, 0.9);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 32px;
}

.stat-card.warning {
    background: linear-gradient(180deg, #fffaf0, #fff);
}

.stat-card.danger {
    background: linear-gradient(180deg, #fff5f5, #fff);
}

.stat-card.selected {
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 22px 44px rgba(15, 118, 110, 0.14);
    transform: translateY(-1px);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.employees-table {
    table-layout: fixed;
}

.employees-table th:nth-child(1) {
    width: 110px;
}

.employees-table th:nth-child(2) {
    width: 110px;
}

.employees-table th:nth-child(3) {
    width: 124px;
}

.employees-table th:nth-child(4) {
    width: 96px;
}

.employees-table th:nth-child(5) {
    width: 132px;
}

.employees-table th:nth-child(6),
.employees-table th:nth-child(7) {
    width: 110px;
}

.employees-table th:nth-child(8),
.employees-table th:nth-child(9) {
    width: 104px;
}

.employees-table th:nth-child(10) {
    width: 250px;
}

th,
td {
    text-align: left;
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.compact-table th,
.compact-table td {
    padding: 11px 10px;
    font-size: 13px;
}

th {
    color: var(--muted);
    font-weight: 700;
}

.employee-name-link {
    color: var(--primary-dark);
    font-weight: 800;
}

.employee-name-link:hover {
    text-decoration: underline;
}

.compact-column {
    width: 92px;
}

.compact-cell {
    max-width: 92px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-device-cell {
    max-width: 84px;
}

.status-cell,
.time-cell,
.schedule-cell {
    vertical-align: middle;
}

.status-cell .pill {
    min-width: 88px;
    justify-content: center;
}

.emphasis-time {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.company-cell {
    color: var(--muted);
    font-weight: 700;
}

.location-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    padding: 8px 16px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
}

.location-tabs a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.settings-tabs {
    gap: 12px;
}

.settings-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    padding: 8px 16px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.settings-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.schedule-cell {
    color: var(--muted);
    font-weight: 700;
}

.manage-cell .action-row {
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
}

.pill.success {
    background: var(--success-bg);
    color: var(--success-text);
}

.pill.warning {
    background: var(--warning-bg);
    color: var(--warning-text);
}

.pill.danger {
    background: var(--danger-bg);
    color: var(--danger-text);
}

.pill.neutral {
    background: var(--neutral-bg);
    color: var(--neutral-text);
}

.settings-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 24px;
}

.location-preview {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.location-preview p {
    margin: 0;
}

.location-preview strong {
    display: inline-block;
    min-width: 76px;
    color: var(--text);
}

.map-help-card {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0.03));
    border: 1px solid rgba(15, 118, 110, 0.14);
}

.map-help-card strong {
    display: block;
    margin-bottom: 8px;
}

.map-help-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-shell {
    margin-top: 8px;
}

.company-map {
    width: 100%;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.compact-settings-form {
    margin-top: 0;
}

.alert {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.alert.error {
    background: var(--danger-bg);
    color: var(--danger-text);
}

.alert.success {
    background: var(--success-bg);
    color: var(--success-text);
}

.field-error {
    color: var(--danger-text);
    font-size: 12px;
}

.action-row,
.button-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button-row-end {
    justify-content: flex-end;
}

.small-primary {
    padding: 12px 16px;
}

.filter-form {
    grid-template-columns: repeat(3, minmax(0, 220px));
    align-items: end;
}

.empty-state {
    padding: 20px;
    border-radius: 16px;
    background: rgba(226, 232, 240, 0.45);
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.employee-detail-grid {
    display: grid;
    gap: 18px;
}

.employee-detail-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), #ffffff);
}

.invite-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.invite-result-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

.invite-result-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.invite-link-box {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.invite-link-box span {
    font-size: 14px;
    font-weight: 700;
}

.invite-link-box textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(248, 250, 252, 0.92);
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    resize: vertical;
}

.invite-result-modal {
    width: min(720px, calc(100vw - 32px));
}

.invite-result-copy {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.invite-result-highlight {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(15, 118, 110, 0.16);
}

.invite-result-highlight strong {
    font-size: 16px;
    line-height: 1.6;
}

.invite-highlight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.invite-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.invite-expire-text {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.invite-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.invite-meta-card {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), #ffffff);
}

.invite-meta-card strong {
    font-size: 16px;
    line-height: 1.4;
}

.invite-meta-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
}

.invite-guide-card {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid var(--line);
}

.invite-guide-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.invite-guide-list li + li {
    margin-top: 6px;
}

.invite-link-field {
    display: grid;
    gap: 8px;
    margin-top: 6px;
}

.invite-link-field span {
    font-size: 14px;
    font-weight: 700;
}

.invite-link-field textarea {
    width: 100%;
    min-height: 92px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(248, 250, 252, 0.96);
    padding: 16px 18px;
    font: inherit;
    line-height: 1.6;
    word-break: break-all;
    color: var(--text);
    resize: vertical;
}

.invite-link-field small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.modal-sheet {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 50;
}

.settings-modal-card {
    width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(219, 228, 240, 0.9);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.employee-editor-modal .employee-editor-panel {
    width: min(760px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    margin: 0;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.employee-detail-modal-card {
    width: min(880px, calc(100vw - 40px));
    max-height: calc(100vh - 56px);
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.employee-detail-modal-header {
    margin-bottom: 12px;
}

.modal-table-scroll {
    max-height: calc(100vh - 280px);
    overflow: auto;
    padding-right: 4px;
}

.monthly-records-scroll {
    max-height: min(52vh, 460px);
    overflow: auto;
    padding-right: 4px;
}

.employee-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    margin-bottom: 14px;
}

.employee-detail-header h3 {
    margin: 0;
    font-size: 18px;
}

.employee-detail-header h3 small {
    margin-left: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.employee-detail-header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.employee-detail-metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.detail-table th,
.detail-table td {
    padding-top: 12px;
    padding-bottom: 12px;
}

.upload-feedback {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.14);
}

.upload-feedback h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.failure-list {
    margin: 0;
    padding-left: 18px;
    color: var(--danger-text);
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.ghost-link,
.danger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
}

.ghost-link {
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
}

.danger-link {
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-text);
    cursor: pointer;
}

.small-link {
    min-height: 36px;
    padding: 6px 12px;
}

.table-scroll {
    overflow-x: auto;
}

.sql-console-notice {
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.sql-console-notice strong {
    display: block;
    margin-bottom: 8px;
}

.sql-console-notice p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.sql-editor {
    min-height: 260px;
    font-family: "SFMono-Regular", "Consolas", "Monaco", monospace;
    font-size: 14px;
    line-height: 1.6;
}

.sql-snippet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.sql-snippet-card {
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.98));
    text-align: left;
    cursor: pointer;
}

.sql-snippet-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 15px;
}

.sql-snippet-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.sql-result-table {
    min-width: max-content;
}

.sql-result-table td {
    white-space: nowrap;
}

.list-summary,
.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.list-summary {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.pagination-bar {
    margin-top: 14px;
}

.pagination-current {
    color: var(--neutral-text);
    font-size: 13px;
    font-weight: 800;
}

body.modal-open {
    overflow: hidden;
}

body.modal-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(4px);
    z-index: 40;
}

.employee-editor-panel {
    position: relative;
}

body.confirm-open {
    overflow: hidden;
}

.confirm-backdrop {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(4px);
    z-index: 70;
}

.confirm-dialog {
    width: min(440px, calc(100vw - 32px));
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(219, 228, 240, 0.9);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.confirm-dialog h3 {
    margin: 0 0 10px;
}

.confirm-dialog p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.6;
}

.confirm-dialog .button-row {
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        padding-bottom: 20px;
    }

    .card-grid,
    .settings-layout {
        grid-template-columns: 1fr;
    }

    .page-header {
        align-items: start;
        flex-direction: column;
    }

    .page-header-actions {
        justify-items: start;
    }
}

@media (max-width: 720px) {
    .content {
        padding: 24px 16px 40px;
    }

    .login-panel,
    .panel,
    .stat-card {
        padding: 20px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }

    .sql-snippet-grid {
        grid-template-columns: 1fr;
    }

    .employee-detail-header {
        flex-direction: column;
    }

    .employee-editor-modal .employee-editor-panel {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    .invite-highlight-header {
        align-items: flex-start;
    }

    .employee-detail-modal-card {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    .modal-table-scroll {
        max-height: calc(100vh - 240px);
    }

    .monthly-records-scroll {
        max-height: 50vh;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    td {
        border: none;
        padding: 8px 0;
    }
}
