:root {
    color-scheme: light;
    --bg: #f6f7f9;
    --surface: #ffffff;
    --text: #18202a;
    --muted: #657181;
    --line: #d9dee6;
    --primary: #176b57;
    --primary-hover: #125644;
    --danger: #b42318;
    --success-bg: #eaf7ef;
    --success-text: #176b36;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: var(--primary);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
    padding: 0 32px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(24, 32, 42, 0.04);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.brand img {
    display: block;
    width: auto;
    height: 42px;
}

.topbar nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
}

.topbar nav a {
    text-decoration: none;
}

.user-menu {
    position: relative;
}

.user-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    width: 180px;
    height: 10px;
}

.user-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.user-menu-trigger i {
    font-size: 11px;
}

.user-menu-list {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    z-index: 100;
    display: none;
    min-width: 160px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(24, 32, 42, 0.14);
}

.user-menu:hover::after,
.user-menu:focus-within::after {
    display: block;
}

.user-menu:hover .user-menu-list,
.user-menu:focus-within .user-menu-list {
    display: block;
}

.user-menu-list a {
    display: block;
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--text);
    white-space: nowrap;
}

.user-menu-list a:hover {
    background: #f3f6f8;
}

.page {
    width: min(920px, calc(100% - 32px));
    margin: 40px auto;
}

.panel,
.auth {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
}

.auth {
    max-width: 460px;
    margin: 0 auto;
}

.auth-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.auth form th {
    vertical-align: middle;
}

h1 {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.2;
}

form table {
    width: 100%;
    border-collapse: collapse;
}

form th {
    width: 120px;
    padding: 10px 12px 10px 0;
    color: var(--muted);
    font-weight: 600;
    text-align: left;
    vertical-align: top;
}

.modal-panel form th {
    vertical-align: middle;
}

.modal-panel .align-input-row th {
    padding-top: 19px;
    vertical-align: top;
}

form td {
    padding: 10px 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
    font: inherit;
}

input[type="submit"] {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 16px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

button[type="submit"] {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 16px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

button[type="submit"]:disabled,
input[type="submit"]:disabled {
    cursor: default;
    opacity: 0.72;
}

button[data-modal-open]:not(.text-link-button):not(.title-edit-button) {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 16px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
button[data-modal-open]:not(.text-link-button):not(.title-edit-button):hover {
    background: var(--primary-hover);
}

button {
    font: inherit;
}

.secondary-button,
.icon-button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 12px;
    background: var(--surface);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.secondary-button:hover,
.icon-button:hover {
    border-color: var(--primary);
}

.danger-button {
    min-height: 38px;
    border: 1px solid #f3b8b3;
    border-radius: 6px;
    padding: 0 12px;
    background: #fff0ef;
    color: var(--danger);
    font-weight: 700;
    cursor: pointer;
}

.danger-button:hover {
    border-color: var(--danger);
    background: #fee4e2;
}

.icon-text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    padding: 0;
    font-size: 22px;
    line-height: 1;
}

.icon-button.small {
    width: 24px;
    min-height: 24px;
    border-radius: 4px;
}

.icon-button i {
    font-size: 14px;
    line-height: 1;
}

.error {
    margin: 8px 0;
    color: var(--danger);
}

.flash-stack {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 6px;
    padding: 12px 14px;
    box-shadow: 0 12px 32px rgba(24, 32, 42, 0.16);
    pointer-events: auto;
    animation: flash-slide-in 0.22s ease-out;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.flash.is-hiding {
    opacity: 0;
    transform: translateX(32px);
}

.flash.success {
    background: var(--success-bg);
    color: var(--success-text);
}

.flash.error {
    background: #fff0ef;
    color: var(--danger);
}

.flash-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    min-height: 28px;
    border: 0;
    border-radius: 4px;
    padding: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
}

.flash-close:hover {
    background: rgba(24, 32, 42, 0.08);
}

@keyframes flash-slide-in {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.muted {
    color: var(--muted);
}

.empty-state {
    margin-top: 24px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 28px;
    color: var(--muted);
}

.dashboard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.dashboard-heading p {
    margin: 0;
}

.activity-title-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.activity-title-row h1 {
    margin-bottom: 8px;
}

.activity-title-row .icon-button {
    flex: 0 0 auto;
    margin-top: 4px;
}

button.title-edit-button[data-modal-open] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    min-height: 24px;
    margin-top: 4px;
    border: 0;
    border-radius: 4px;
    padding: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

button.title-edit-button[data-modal-open]:hover {
    background: transparent;
    color: var(--primary);
}

button.title-edit-button[data-modal-open] i {
    font-size: 14px;
    line-height: 1;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.range-switch {
    display: inline-flex;
    flex-shrink: 0;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4px;
    background: #fafbfc;
}

.range-switch a {
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.range-switch a.active {
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 1px 2px rgba(24, 32, 42, 0.08);
}

.year-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.year-filter label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.year-filter select {
    min-height: 38px;
    min-width: 150px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 10px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
}

select option {
    background: var(--surface);
    color: var(--text);
}

.flatpickr-calendar {
    z-index: 1200;
}

.modal .flatpickr-calendar {
    z-index: 1300;
}

.modal .flatpickr-wrapper {
    width: 100%;
}

.flatpickr-current-month {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    left: 34px;
    width: calc(100% - 68px);
    padding-top: 6px;
    font-size: 14px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    width: auto;
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0 16px 0 4px;
    background: transparent;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.flatpickr-current-month input.cur-year {
    width: 56px;
    min-height: 0;
    height: auto;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.flatpickr-current-month .numInputWrapper {
    width: 58px;
}

.modal-panel select,
.modal-panel select option {
    background-color: #ffffff;
}

.choices {
    width: 100%;
    margin: 0;
    font: inherit;
}

.choices__inner {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 34px 6px 10px;
    background: var(--surface);
    color: var(--text);
    font-size: 1rem;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 6px;
}

.choices__list--single {
    padding: 2px 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    z-index: 1000;
    border-color: var(--line);
    border-radius: 6px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(24, 32, 42, 0.16);
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
    background: var(--surface);
    color: var(--text);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background: #eaf7ef;
}

.year-filter .choices {
    min-width: 150px;
}

.import-panel {
    margin-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
}

.import-panel h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.import-panel form table {
    max-width: 620px;
}

.import-panel input[type="file"] {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
    font: inherit;
    background: var(--surface);
}

.settings-form {
    max-width: 680px;
}

.settings-section {
    border: 1px solid var(--line);
    border-left: 4px solid #d9ebe5;
    border-radius: 8px;
    padding: 20px;
    background: #fbfcfd;
}

.settings-section:first-of-type {
    margin-top: 4px;
}

.settings-section + .settings-section {
    margin-top: 18px;
}

.settings-section .section-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
}

.settings-inline-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.settings-inline-row label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.settings-inline-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.settings-inline-row .input-with-unit {
    width: 150px;
}

.settings-inline-row input[type="submit"] {
    min-height: 42px;
}

.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    cursor: help;
}

.info-tooltip i {
    font-size: 13px;
}

.info-tooltip-panel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 1200;
    display: none;
    width: 260px;
    transform: translateX(-50%);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
    background: var(--text);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(24, 32, 42, 0.18);
}

.info-tooltip:hover .info-tooltip-panel,
.info-tooltip:focus .info-tooltip-panel {
    display: block;
}

.connected-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: #fafbfc;
}

.connected-account > div {
    display: grid;
    gap: 4px;
}

.strava-import-date-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.connected-account-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.text-link-button {
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-weight: 400;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.text-link-button:hover {
    background: transparent;
    color: var(--primary-hover);
}

.inline-settings-form {
    margin-bottom: 14px;
}

.activity-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: #fafbfc;
}

.activity-filters label {
    flex: 1 1 160px;
    min-width: 0;
}

.activity-filters label:first-child {
    flex-basis: 200px;
}

.activity-filters label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.filter-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 12px;
    background: var(--surface);
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.secondary-link-button:hover {
    border-color: var(--primary);
}

.settings-form form th {
    vertical-align: middle;
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-with-unit input {
    max-width: 140px;
}

.input-with-unit span {
    color: var(--muted);
    font-weight: 700;
}

.form-hint {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stat {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
}

.stat-label,
.activity-metrics dt {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.stat strong {
    font-size: 24px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.activity-table {
    width: 100%;
    min-width: 760px;
    border: 1px solid var(--line);
    border-radius: 8px;
    border-spacing: 0;
    font-size: 14px;
    overflow: hidden;
}

.activity-table th,
.activity-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}

.activity-table th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    background: #fafbfc;
}

.table-sort-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.table-sort-link:hover {
    color: var(--text);
}

.table-sort-link .fa-solid {
    width: 12px;
    color: #9ca3af;
    font-size: 11px;
    text-align: center;
}

.activity-table tr:last-child td {
    border-bottom: 0;
}

.activity-table td:nth-child(2) {
    font-weight: 700;
    white-space: normal;
}

.activity-table td:nth-child(2) a {
    text-decoration: none;
}

.records-table td:nth-child(4) {
    font-weight: 700;
    white-space: normal;
}

.records-table td:nth-child(4) a {
    text-decoration: none;
}

.activity-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 800;
}

.activity-badge-easy_run {
    background: #e8f3ff;
    color: #175cd3;
}

.activity-badge-long_run {
    background: #dcfae6;
    color: #087443;
}

.activity-badge-tempo {
    background: #fff1d6;
    color: #9a5b00;
}

.activity-badge-interval {
    background: #fee4e2;
    color: #b42318;
}

.split-table-wrap {
    margin-top: 12px;
}

.split-control-form {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.split-control-form label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.split-control-form select {
    min-width: 92px;
}

.split-table {
    min-width: 420px;
}

.segment-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 800;
}

.segment-label-warmup,
.segment-label-cooldown {
    background: #e8f3ff;
    color: #175cd3;
}

.segment-label-interval {
    background: #fee4e2;
    color: #b42318;
}

.back-link {
    margin: 0 0 16px;
}

.section-title {
    margin: 28px 0 12px;
    font-size: 20px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 28px 0 12px;
}

.section-heading .section-title {
    margin: 0;
}

.section-heading.inline-title-action {
    justify-content: flex-start;
    gap: 8px;
}

.section-heading.inline-title-action .title-edit-button {
    margin-top: 1px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.detail-grid.compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.detail-grid div {
    min-width: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
}

.detail-grid div:nth-child(2n) {
    border-right: 0;
}

.detail-grid.compact div:nth-child(2n) {
    border-right: 1px solid var(--line);
}

.detail-grid.compact div:nth-child(5n) {
    border-right: 0;
}

.detail-grid span {
    display: inline;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.detail-grid span::after {
    content: ": ";
}

.detail-grid strong {
    display: inline;
    overflow-wrap: anywhere;
}

.detail-grid .detail-action-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.detail-grid .detail-action-row strong {
    flex: 1;
}

.detail-grid.stacked span {
    display: block;
    margin-bottom: 6px;
}

.detail-grid.stacked span::after {
    content: "";
}

.detail-grid.stacked strong {
    display: block;
}

.modal {
    width: min(760px, calc(100% - 32px));
    border: 0;
    border-radius: 8px;
    padding: 0;
    color: var(--text);
    overflow: visible;
}

.modal::backdrop {
    background: rgba(24, 32, 42, 0.45);
}

.modal-panel {
    padding: 24px;
    overflow: visible;
}

.import-progress {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    min-height: 42px;
    color: var(--primary);
    font-weight: 700;
}

.modal-panel.is-importing .import-progress {
    display: flex;
}

.modal-panel.is-importing .gpx-import-form input[type="submit"],
.modal-panel.is-importing .gpx-import-form button[type="submit"] {
    display: none;
}

.modal-panel.is-importing .icon-button[data-modal-close] {
    opacity: 0.45;
    cursor: default;
}

.import-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(23, 107, 87, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: import-spin 0.75s linear infinite;
}

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

.modal-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.modal-heading h2,
.modal-subtitle {
    margin: 0;
}

.modal-subtitle {
    margin-top: 18px;
    font-size: 16px;
}

.timing-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.timing-form-grid.single {
    grid-template-columns: 1fr;
}

.timing-form-grid label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

@media (max-width: 640px) {
    .flash-stack {
        top: 106px;
        right: 16px;
        left: 16px;
        width: auto;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }

    .page {
        margin: 24px auto;
    }

    .panel,
    .auth {
        padding: 20px;
    }

    .dashboard-heading {
        flex-direction: column;
    }

    .dashboard-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .range-switch {
        width: 100%;
    }

    .year-filter {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .year-filter select {
        width: 100%;
    }

    .range-switch a {
        flex: 1;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .activity-filters,
    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-grid,
    .detail-grid.compact,
    .timing-form-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid div,
    .detail-grid.compact div,
    .detail-grid.compact div:nth-child(2n),
    .detail-grid.compact div:nth-child(5n) {
        border-right: 0;
    }

    form th,
    form td {
        display: block;
        width: 100%;
        padding: 6px 0;
    }
}
