/* --------------------------------------------------------
   GLOBAL BASE
-------------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    background: #0f1514;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

a {
    color: #F8DA8D;
    text-decoration: none;
}
.login-logo-wrap {
	padding: 15px;
	text-align: center;
}
.login-logo-wrap img {
	max-width: 250px;
	margin: 0 auto;
}
/* --------------------------------------------------------
   PAGE LAYOUT (Unified for login + app pages)
-------------------------------------------------------- */
.page,
.page-wide {
    max-width: 1100px;   /* Desktop max */
    width: 100%;         /* Mobile full width */
    margin: 20px auto 60px;
    padding: 20px;
    box-sizing: border-box;
}

.page h2,
.page-wide h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* --------------------------------------------------------
   HEADER / NAV
-------------------------------------------------------- */
.main-header {
    background: #177867;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 38px;
}

.main-nav a {
    margin-left: 15px;
    font-weight: 500;
}

.admin-header {
    background: #145d4f;
}

/* --------------------------------------------------------
   CONTENT WRAP
-------------------------------------------------------- */
.content-wrap {
    padding: 20px;
}

/* --------------------------------------------------------
   CARDS
-------------------------------------------------------- */
.card {
    background: #18201f;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #274a45;
}

.balance-card .balance {
    font-size: 28px;
    font-weight: bold;
}

/* --------------------------------------------------------
   LANDING PAGE (index)
-------------------------------------------------------- */
.landing-soft {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.coming-note {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.85;
}

.status-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.6;
}

.login-subtle {
    margin-top: 3rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.login-subtle a {
    text-decoration: none;
}

/* --------------------------------------------------------
   TABLES
-------------------------------------------------------- */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.table th,
.table td {
    padding: 10px;
    border-bottom: 1px solid #2a3533;
}

.neg { color: #ff6161; }
.pos { color: #75d875; }

/* --------------------------------------------------------
   BUTTONS
-------------------------------------------------------- */
.btn {
    padding: 12px 18px;
    border-radius: 8px;
    background: #F8DA8D;
    color: #000;
    display: inline-block;
    font-weight: bold;
    font-size: 15px;
}

.btn-gold {
    background: linear-gradient(to right, #F8DA8D, #E4B85D);
}

.btn-small {
    padding: 6px 10px;
    font-size: 13px;
}

/* --------------------------------------------------------
   FORMS (Unified, full-width, touch-friendly)
-------------------------------------------------------- */

/* Form layout */
.page form label,
.page-wide form label {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    margin-top: 14px;
    font-weight: 500;
}

.page form input,
.page form select,
.page form textarea,
.page-wide form input,
.page-wide form select,
.page-wide form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #2a3533;
    background: #1c2726;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

/* Pretty dropdown arrow */
.page-wide select,
.page select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFFFFF'%3e%3cpolygon points='0,0 12,0 6,7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* --------------------------------------------------------
   AUTH / LOGIN
-------------------------------------------------------- */
.auth-container {
    text-align: center;
    margin: 50px auto;
    max-width: 400px;
}

.auth-logo {
    width: 120px;
    margin-bottom: 20px;
}

.auth-form {
    background: #18201f;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #274a45;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
}

.error {
    background: #ff5c5c;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.success {
    background: #75d875;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Password eye icon */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px !important;
}

.toggle-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
}

/* --------------------------------------------------------
   LANDING PAGE
-------------------------------------------------------- */
.landing {
    text-align: center;
    padding: 60px 20px;
    max-width: 420px;
    margin: 40px auto;
}

.landing-logo {
    width: 140px;
    opacity: 0.95;
    margin-bottom: 15px;
}

.landing h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.tagline {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
}

.landing-btn {
    font-size: 1.1rem;
    padding: 12px 22px;
}

/* --------------------------------------------------------
   MOBILE OVERRIDES (Keep at bottom)
-------------------------------------------------------- */
@media (max-width: 600px) {

    .main-header {
        padding: 10px 14px;
    }

    .nav-logo {
        height: 32px;
    }

    .main-nav a {
        margin-left: 10px;
        font-size: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .table th,
    .table td {
        padding: 8px;
    }
}
.legend-row {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #ccc;
}

.badge-pending {
    background: #ff4c4c;
    padding: 3px 7px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    font-size: 13px;
}

.badge-cleared {
    background: #3da5ff;
    padding: 3px 7px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    font-size: 13px;
}
/* Category Color Picker */
.color-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 1;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.selected {
    border-color: #F8DA8D;
}

.color-swatch.used {
    opacity: 0.35;
    cursor: not-allowed;
}

.used-colors-list {
    margin-top: 30px;
    padding: 15px;
    border-radius: 10px;
    background: #18201f;
    border: 1px solid #274a45;
}

.used-colors-list h3 {
    margin-top: 0;
    font-size: 17px;
    color: #F8DA8D;
}

.used-color-item {
    margin-bottom: 8px;
}
.main-footer {
	text-align: center;
}
/* DASHBOARD TABS */
.dash-tabs {
    text-align: center;
    margin-bottom: 20px;
}

.dash-tab {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 6px;
    color: #fff;
    opacity: 0.7;
    border-bottom: 2px solid transparent;
    font-weight: 600;
}

.dash-tab.active {
    opacity: 1;
    border-bottom: 2px solid #F8DA8D;
}
.balance-summary {
	background: #196236;
	margin-bottom:20px;
	padding:12px;
	border-radius:6px;
}
.balance-card, .warning-box {
    padding: 12px;
    margin: 12px 0;
    border-radius: 8px;
    background: #1f2937;
}

.warning-box {
    border-left: 4px solid #d9534f;
}

.error {
    color: #d9534f;
    margin-bottom: 8px;
}
/* Transactions Action Buttons - mobile fix */
@media (max-width: 640px) {
    .transaction-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .transaction-actions a {
        width: 100%;
        text-align: center;
    }
}
/* ---- NAV ROW 1 (Logo + User) ---- */
.nav-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.nav-logo {
    height: 40px;
}

.nav-user-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-pfp {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0f1514;
}

.nav-name {
    font-size: 16px;
    font-weight: 600;
}

/* ---- DESKTOP NAV (Row 2 on desktop) ---- */
.nav-desktop-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-desktop {
    display: flex;
    gap: 18px;
	padding-left: 20px;
}

nav a.active {
    color: #F8DA8D;
    border-bottom: 2px solid #F8DA8D;
    padding-bottom: 4px;
}

/* ---- MOBILE NAV (Row 2 on mobile) ---- */
.nav-row-bottom {
    display: none; /* hidden on desktop */
}

/* ---- MOBILE STYLES ---- */
@media (max-width: 820px) {

    /* Hide desktop nav */
    .nav-desktop {
        display: none;
    }

    /* Stack top row on mobile */
    .nav-desktop-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-row-top {
        justify-content: center;
        gap: 12px;
    }

    .nav-logo {
        height: 32px;
    }

    .nav-pfp {
        width: 28px;
        height: 28px;
    }

    .nav-name {
        font-size: 14px;
    }

    /* MOBILE NAV BECOMES PRIMARY */
    .nav-row-bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
        justify-content: center;
        text-align: center;
        padding: 12px 12px;
        width: 100%;
        border-top: 1px solid #1c2726;
        margin-top: 8px;
    }

    .nav-row-bottom a {
        font-size: 14px;
        font-weight: 500;
        padding: 4px 0;
    }

    .nav-row-bottom a.active {
        color: #F8DA8D;
        border-bottom: 2px solid #F8DA8D;
        padding-bottom: 4px;
    }
}

/* Toggle button */
.toggle-btn {
    padding: 4px 10px;
    background: #444;
    border: 1px solid #666;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

/* Event detail rows */
.event-details {
    background: #1c242b;
}

/* Make income green again */
.event-item.income {
    color: #3bd16f;       /* bright green */
}

/* Make expenses red again */
.event-item.expense {
    color: #ff5c5c;       /* bright red */
}
.event-item {
    background: #1d2423;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #2c3332;
}

.event-item form input[type="number"],
.event-item form input[type="date"] {
    background: #131918;
    color: #fff;
    border: 1px solid #3a4443;
    padding: 4px 6px;
    border-radius: 6px;
}

.event-item .btn-small {
    background: #3e9f7c;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.event-item .btn-small:hover {
    background: #37a173;
    opacity: 0.9;
}

/* Warning box */
.warning-box {
    background: #2d0000;   /* dark red background */
    border: 1px solid #ff5c5c;
    padding: 12px;
    margin: 12px 0;
    color: #ff9a9a;        /* light red/pink text */
    border-radius: 6px;
}

/* Optional: warning icon */
.warning-box strong {
    color: #ffcccc;
}
/* ============================
   POVERTY GAME — SCOPED STYLES
   (Wrapped under .poverty-game-page)
=============================== */

.poverty-game-page .seating-area {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.poverty-game-page .seat {
    background: #222;
    padding: 12px;
    border-radius: 10px;
    width: 150px;
    text-align: center;
    border: 2px solid #555;
    position: relative;
}

.poverty-game-page .seat.turn {
    border-color: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
}

.poverty-game-page .seat.knocker {
    border-color: gold;
}

.poverty-game-page .seat .seat-status {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #ffd700;
    text-transform: uppercase;
}

.poverty-game-page .seat .knock-badge {
    background: gold;
    color: #000;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.poverty-game-page .knock-phase-box {
    background: #ffbf00;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    box-shadow: 0 0 8px #ffbf00;
}

.poverty-game-page .hidden {
    display: none !important;
}

/* Game Over */
.poverty-game-page .game-over-screen {
    background: rgba(0,0,0,0.85);
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:2rem;
    flex-direction:column;
    z-index:9999;
}

.poverty-game-page .game-over-screen button {
    margin-top:20px;
    padding:12px 25px;
    background:#4CAF50;
    border:none;
    border-radius:8px;
    font-size:1.2rem;
    cursor:pointer;
}
.pfp-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 8px;
    border: 2px solid #333;
}
/* ================================================
   POVERTY GAME — RESPONSIVE AVATAR & IMAGE FIXES
=================================================== */

/* Prevent any image in the app from stretching */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Lobby list avatar */
.pfp-small {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 2px solid #333;
    display: inline-block;
}

/* Seating-circle avatar */
.seat-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 6px;
    border: 3px solid #111;
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
    display: block;
}

/* Fallback initials avatar */
.seat-avatar-initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    border: 3px solid #222;
}

/* Under-avatar text */
.seat-name {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
}

.seat-dimes {
    margin-top: 2px;
    font-size: 15px;
    color: #ffd700;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .seat-avatar,
    .seat-avatar-initials {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .seat-name {
        font-size: 13px;
    }

    .seat-dimes {
        font-size: 14px;
    }

    .pfp-small {
        width: 30px;
        height: 30px;
    }
}
//* ==========================================================
   POVERTY GAME — CLEAN, MERGED, NO DUPLICATES
========================================================== */

/* PAGE WRAPPER */
.poverty-game-page {
    max-width: 900px;
    margin: 25px auto 60px;
}

/* CARD OVERRIDE (LOBBY ONLY — NO !important HERE) */
.poverty-game-page .card {
    background: rgba(255,255,255,0.07);
    padding: 28px 30px;
    border-radius: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 12px rgba(0,0,0,0.35);
}

/* Title inside lobby cards */
.poverty-game-page .card h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
    color: #F8DA8D;
}

/* ==========================================================
   LOBBY PLAYER LIST
========================================================== */

.poverty-game-page #lobby-player-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.poverty-game-page #lobby-player-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.poverty-game-page #lobby-player-list li:last-child {
    border-bottom: none;
}

.pfp-small {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

/* WAITING ROOM STATUS */
.poverty-game-page #lobby-status-text {
    margin-top: 14px;
    text-align: center;
    font-size: 16px;
    opacity: 0.85;
}

.poverty-game-page #start-button {
    display: block;
    width: 220px;
    margin: 12px auto 0;
    padding: 12px 18px;
    font-size: 17px;
}

/* ==========================================================
   SEATING AREA
========================================================== */

.seating-area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 22px;
}

.seat {
    background: rgba(255,255,255,0.08);
    width: 150px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.seat.turn {
    border: 2px solid #F8DA8D;
}

.seat-name {
    font-weight: 600;
    margin: 6px 0 3px;
}

/* ==========================================================
   CARD DISPLAY (YOUR HAND)
========================================================== */

.hand-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.hand-cards .card {
    width: 85px;
    height: 120px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hand-cards .card.selected {
    border: 3px solid #F8DA8D;
    transform: translateY(-6px);
}

.card.selected {
    outline: 3px solid #f8da8d;
    transform: scale(1.05);
}

/* ==========================================================
   DISCARD PILE — FIXED & CLEAN
========================================================== */

.discard-pile {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* White discard card */
#discard-pile .card {
    background: #ffffff;
    border: 2px solid #222;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    color: #000;
}

/* ==========================================================
   ACTION FORM BUTTONS
========================================================== */

#action-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

#action-form .btn {
    min-width: 160px;
}

/* ==========================================================
   KNOCK PHASE
========================================================== */

.knock-phase-box {
    background: #F8DA8D;
    padding: 12px 20px;
    color: #000;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ==========================================================
   POST ROUND RESULTS
========================================================== */

.post-round {
    margin-top: 25px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
}

/* ==========================================================
   MOBILE RESPONSIVE
========================================================== */

@media (max-width: 480px) {
    .pfp-small {
        width: 30px;
        height: 30px;
    }

    .seat-avatar,
    .seat-avatar-initials {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .seat-name {
        font-size: 13px;
    }

    .seat-dimes {
        font-size: 14px;
    }

    .hand-cards .card {
        width: 70px;
        height: 100px;
    }

    .knock-phase-box {
        font-size: 0.95rem;
        padding: 10px;
    }

    #action-form .btn {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 640px) {
    .hand-cards .card {
        width: 78px;
        height: 110px;
    }

    #lobby-player-list li {
        font-size: 15px;
        gap: 10px;
    }

    .seat {
        width: 130px;
        padding: 10px;
    }
}

@media (max-width: 820px) {
    .poverty-game-page {
        padding: 0 10px;
        margin-top: 20px;
    }

    #action-form {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    #action-form .btn {
        font-size: 15px;
        padding: 10px 14px;
    }
}

/* POVERTY LABEL */
.poverty-flag {
    color: #F8DA8D;
    font-weight: bold;
    text-transform: uppercase;
}

/* NEXT ROUND BUTTON */
.next-round-btn {
    background: #F8DA8D;
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.next-round-btn:hover {
    background: #ffe7b8;
}

.next-round-btn:active {
    transform: scale(0.96);
}

/* Card suit colors */
.card.hearts .card-suit,
.card.diamonds .card-suit {
    color: red;
}

.card.clubs .card-suit,
.card.spades .card-suit {
    color: black;
}
.hand-cards .card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hand-cards .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.card-ghost {
    position: absolute;
    width: 85px;
    height: 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 9999;
}
.card-ghost {
    transition: transform 0.35s ease-out, opacity 0.35s ease-out;
    z-index: 9999;
    pointer-events: none;
}
/* =========================================
   Base Table
========================================= */

.table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.table th,
.table td {
    padding: 10px 8px;
    text-align: left;
    vertical-align: top;
}

.table th {
    font-weight: 600;
    opacity: 0.85;
}

/* Ensure Type column never collapses */
.type-col {
    min-width: 120px;
    white-space: nowrap;
}

/* =========================================
   Collapsible Transaction Rows
========================================= */

.tx-row {
    border-bottom: 1px solid #2a2a2a;
}

.tx-cell {
    padding: 0;
}

/* Summary row (always visible) */
.tx-summary {
    display: grid;
    grid-template-columns: 70px 1fr 70px 90px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    font-weight: 500;
}

.tx-summary span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Expanded content */
.tx-expanded {
    padding: 10px 14px 14px;
    border-top: 1px dashed #333;
    font-size: 0.9em;
}

.tx-expanded > div {
    margin-bottom: 6px;
}

/* Remove default triangle */
.tx-details summary::-webkit-details-marker {
    display: none;
}

/* =========================================
   Inline Form
========================================= */

.inline-form {
    margin-top: 8px;
}

.inline-form select {
    min-width: 130px;
}

/* =========================================
   Mobile Adjustments
========================================= */

@media (max-width: 820px) {

    .table thead {
        display: none;
    }

    .tx-summary {
        grid-template-columns: 60px 1fr 60px 80px;
        font-size: 0.95em;
    }

    .tx-expanded {
        font-size: 0.85em;
    }
}

/* =========================================
   Desktop Refinement
========================================= */

@media (min-width: 900px) {

    .tx-summary {
        grid-template-columns: 90px 1fr 80px 120px;
    }
}





