@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap");

:root {
    color-scheme: light;
    --bg: #faf6f1;
    --card: #ffffff;
    --ink: #1a1612;
    --muted: #7a6f63;
    --subtle: #b8ad9f;
    --accent: #e06830;
    --accent-hover: #c85a28;
    --accent-glow: rgba(224, 104, 48, 0.18);
    --accent-soft: rgba(224, 104, 48, 0.08);
    --teal: #1a7a78;
    --teal-soft: rgba(26, 122, 120, 0.08);
    --teal-glow: rgba(26, 122, 120, 0.15);
    --green: #22a355;
    --green-soft: rgba(34, 163, 85, 0.1);
    --border: rgba(26, 22, 18, 0.07);
    --border-strong: rgba(26, 22, 18, 0.12);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 48px rgba(0, 0, 0, 0.1);
    --radius: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    margin: 0;
}

body {
    font-family: "Outfit", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    margin: 0;
    line-height: 1.2;
    font-weight: 800;
}

h2 {
    font-size: 1.35rem;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.9rem;
}

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

/* ═══════════════════════════════════════
   Background orbs
   ═══════════════════════════════════════ */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: orbFloat 22s ease-in-out infinite;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(12px, -18px) scale(1.04);
    }
    50% {
        transform: translate(-8px, 10px) scale(0.97);
    }
    75% {
        transform: translate(6px, 14px) scale(1.02);
    }
}

.orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #f6a870, #f6c8a0);
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}
.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #a4dbd9, #c6e3e2);
    top: 35%;
    left: -180px;
    animation-delay: -5s;
}
.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #f0c4a8, #edd4c3);
    bottom: -60px;
    right: 12%;
    animation-delay: -10s;
}
.orb-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f3b890, #f3c7ae);
    top: 22%;
    left: 5%;
    animation-delay: -3s;
}
.orb-5 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #b8e0de, #d5eceb);
    bottom: 20%;
    left: 45%;
    animation-delay: -8s;
}
.orb-6 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #f5c49a, #f9d5b8);
    top: 65%;
    right: -100px;
    animation-delay: -14s;
}

/* ═══════════════════════════════════════
   Top navigation bar
   ═══════════════════════════════════════ */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(250, 246, 241, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.top-bar-inner {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0.7rem clamp(0.75rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.brand h1 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.25rem 0 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    backdrop-filter: none;
}

.account-bar span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.settings-btn {
    position: static;
    border: 1px solid var(--border-strong);
    background: var(--card);
    color: var(--ink);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: none;
    backdrop-filter: none;
    transition:
        background 0.15s,
        border-color 0.15s;
}

.settings-btn:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
    transform: none;
    box-shadow: none;
}

/* ═══════════════════════════════════════
   Dashboard layout
   ═══════════════════════════════════════ */
.dashboard {
    max-width: 2000px;
    margin: 0 auto;
    padding: 1.25rem clamp(0.75rem, 3vw, 2.5rem) 4rem;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

/* ── Stats strip ── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow:
        0 0 0 3px var(--accent-glow),
        var(--shadow);
}

.stat-card strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--subtle);
    font-weight: 600;
}

/* ── Content grid (table + timeline) ── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

/* ── Panel (card) ── */
.panel {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    width: 100%;
    box-shadow: var(--shadow);
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.panel:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
    transform: none;
}

.panel.snowball-panel {
    min-height: auto;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.panel-header p {
    margin-top: 0.2rem;
}

.panel-note {
    font-size: 0.75rem;
    color: var(--subtle);
    max-width: 220px;
    line-height: 1.35;
}

.panel-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Timeline sidebar ── */
.timeline-sidebar {
    position: sticky;
    top: 4.5rem;
}

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */
button {
    border: none;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition:
        background 0.15s,
        transform 0.15s,
        box-shadow 0.15s;
}

button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--accent-glow);
}

button.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-strong);
    padding: 0.55rem 1rem;
}

button.ghost:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
    transform: none;
}

.table-action {
    border: none;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    padding: 0.38rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    transition:
        background 0.15s,
        box-shadow 0.15s;
}

.table-action:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px var(--accent-glow);
    transform: none;
}

.table-action.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-strong);
}

.table-action.ghost:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    transition:
        background 0.15s,
        border-color 0.15s;
}

.more-link:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    transform: none;
    box-shadow: none;
}

/* ═══════════════════════════════════════
   Forms
   ═══════════════════════════════════════ */
form {
    display: grid;
    gap: 0.9rem;
}

label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    display: grid;
    gap: 0.35rem;
    letter-spacing: 0.01em;
}

.field-help {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--subtle);
}

input,
select {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-strong);
    background: var(--card);
    color: var(--ink);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

input::placeholder {
    color: var(--subtle);
}

.select-wrap {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--subtle);
    font-weight: 600;
    display: grid;
    gap: 0.3rem;
    justify-items: end;
}

.select-wrap select {
    font-size: 0.8rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    border-width: 1px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-top: 0.25rem;
}

/* ── Auth message ── */
.auth-message {
    margin: 0;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    line-height: 1.45;
    border: 1px solid transparent;
    font-weight: 500;
}

.auth-message[data-tone="info"] {
    background: var(--teal-soft);
    color: #0e5453;
    border-color: rgba(26, 122, 120, 0.2);
}

.auth-message[data-tone="success"] {
    background: var(--green-soft);
    color: #15633a;
    border-color: rgba(34, 163, 85, 0.2);
}

.auth-message[data-tone="error"] {
    background: rgba(200, 40, 40, 0.08);
    color: #8a2020;
    border-color: rgba(200, 40, 40, 0.2);
}

/* ── Toggle ── */
.toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
}

.toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* ═══════════════════════════════════════
   Table
   ═══════════════════════════════════════ */
.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.snowball-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.snowball-table th,
.snowball-table td {
    text-align: left;
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid var(--border);
}

.snowball-table th {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.6rem;
    color: var(--subtle);
    font-weight: 700;
    padding-bottom: 0.6rem;
    border-bottom-color: var(--border-strong);
}

.snowball-table tbody tr {
    transition: background 0.15s;
}

.snowball-table tbody tr:hover {
    background: var(--accent-soft);
}

.snowball-table tbody tr td {
    transition: none;
}
.snowball-table tbody tr:hover td {
    transform: none;
}

.snowball-table td {
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

.action-cell {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.size-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(224, 104, 48, 0.1);
    overflow: hidden;
}

.size-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #f5a06a);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.archived-table {
    margin-top: 1.5rem;
}

.footnote {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--subtle);
    font-style: italic;
}

/* ═══════════════════════════════════════
   Modal
   ═══════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 40;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 22, 18, 0.35);
    backdrop-filter: blur(8px) saturate(1.2);
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    width: min(500px, 92vw);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1rem;
    z-index: 1;
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ═══════════════════════════════════════
   Payment graph
   ═══════════════════════════════════════ */
.payment-graph {
    display: grid;
    gap: 1rem;
}

.payment-bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(224, 104, 48, 0.1);
    overflow: hidden;
}

.payment-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--accent), #f5a06a);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 999px;
}

.payment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.payment-stats div {
    padding: 0.4rem 0;
}

.payment-stats strong {
    display: block;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    font-size: 1rem;
}

/* ═══════════════════════════════════════
   Timeline
   ═══════════════════════════════════════ */
.timeline-panel {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: rgba(250, 244, 238, 0.5);
    border: none;
    display: grid;
    gap: 0.5rem;
}

.timeline-panel:hover {
    transform: none;
    box-shadow: none;
}

.timeline {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border: none;
    padding: 0.5rem;
    overflow-x: auto;
    position: relative;
}

.timeline svg {
    width: 100%;
    height: auto;
    display: block;
}
.timeline .chart-label {
    font-family: "Outfit", sans-serif;
}

.chart-tooltip {
    position: absolute;
    pointer-events: none;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: opacity 0.15s;
    white-space: nowrap;
    z-index: 2;
}

.chart-tooltip.visible {
    opacity: 1;
}

.timeline-mobile {
    display: grid;
    gap: 0.75rem;
}
.timeline-mobile-row {
    display: grid;
    gap: 0.3rem;
}

.timeline-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.timeline-mobile-head span {
    color: var(--subtle);
    font-size: 0.75rem;
    font-weight: 400;
}

.timeline-mobile-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(224, 104, 48, 0.1);
    overflow: hidden;
}

.timeline-mobile-track span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #f5a06a);
}

/* ═══════════════════════════════════════
   Debt detail page
   ═══════════════════════════════════════ */
.balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
}

.balance strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.balance span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.6rem;
    color: var(--subtle);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.value {
    font-weight: 600;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    font-size: 0.95rem;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.payment-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.payment-list li:last-child {
    border-bottom: none;
}
.payment-list span {
    color: var(--subtle);
    font-weight: 400;
}

/* ── Paywall banner ── */
.paywall-banner {
    background: linear-gradient(
        135deg,
        rgba(224, 104, 48, 0.06),
        rgba(26, 122, 120, 0.06)
    );
    border-color: var(--accent-glow);
}

.demo-banner {
    background: linear-gradient(
        135deg,
        rgba(26, 122, 120, 0.12),
        rgba(26, 122, 120, 0.04)
    );
    border-color: rgba(26, 122, 120, 0.3);
}

.demo-banner .panel-header {
    margin-bottom: 0;
}

body.app-locked .snowball-panel,
body.app-locked .timeline-sidebar {
    pointer-events: none;
    opacity: 0.35;
    filter: blur(1px);
}

/* ── Debt detail / archived page layout ── */
body > main.layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem clamp(0.75rem, 3vw, 2.5rem) 4rem;
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   Utilities
   ═══════════════════════════════════════ */
.hidden {
    display: none !important;
}

body.reduce-motion *,
body.reduce-motion .bg-orb {
    transition: none !important;
    animation: none !important;
}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 1080px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .timeline-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .stats-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .top-bar-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .top-bar-right {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-note {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .stat-card {
        padding: 0.8rem 0.85rem 0.7rem;
    }

    .stat-card strong {
        font-size: 1.1rem;
    }

    .dashboard {
        padding: 0.75rem 0.75rem 3rem;
        gap: 0.75rem;
    }

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

    .panel {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }

    .snowball-table {
        font-size: 0.82rem;
    }
    .snowball-table th,
    .snowball-table td {
        padding: 0.6rem 0.4rem;
    }

    .table-action {
        width: 100%;
        text-align: center;
    }
    .action-cell {
        gap: 0.35rem;
    }

    .payment-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .bg-orb {
        display: none;
    }

    .snowball-table thead {
        display: none;
    }

    .snowball-table,
    .snowball-table tbody,
    .snowball-table tr,
    .snowball-table td {
        display: block;
        width: 100%;
    }

    .snowball-table tr {
        background: var(--card);
        border-radius: var(--radius-md);
        padding: 0.85rem;
        margin-bottom: 0.5rem;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .snowball-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.35rem 0;
        border-bottom: none;
    }

    .snowball-table td::before {
        content: attr(data-label);
        font-size: 0.58rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--subtle);
        font-weight: 700;
        padding-right: 0.5rem;
    }

    .snowball-table td[data-label="Actions"] {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0.25rem;
    }

    .snowball-table td[data-label="Time saved"] {
        display: none;
    }
}

@media (hover: none) {
    .panel:hover,
    .stat-card:hover,
    .more-link:hover,
    .timeline-panel:hover,
    .snowball-table tbody tr:hover td {
        transform: none;
        box-shadow: inherit;
    }
}
