/* ═══════════════════════════════════════════════════════════
   EXILIUM ONLINE — RANKING PAGE
   Silkroad theme — aligned with layout.css & home.css tokens
   ═══════════════════════════════════════════════════════════ */

:root {
    --gold-100: #fff8e7;
    --gold-300: #f0c96b;
    --gold-400: #ddb84a;
    --gold-500: #c9a227;
    --gold-600: #a8841f;
    --gold-700: #8a6d1a;

    --silver: #b8bcc6;
    --silver-glow: rgba(184, 188, 198, 0.25);
    --bronze: #cd7f32;
    --bronze-glow: rgba(205, 127, 50, 0.25);

    --bg-void: #050407;
    --bg-deep: #08070a;
    --bg-panel: rgba(14, 12, 18, 0.94);

    --ink: #e8e4d8;
    --ink-dim: #a09688;
    --ink-faint: #5a5248;

    --radius: 12px;
    --radius-lg: 16px;
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.5);
    --border-gold: rgba(201, 162, 39, 0.22);
    --border-gold-strong: rgba(201, 162, 39, 0.45);
}

/* ── Page background ── */
body.theme-sro {
    background-image:
        linear-gradient(to bottom, rgba(5, 4, 7, 0.92) 0%, rgba(8, 7, 10, 0.82) 50%, rgba(5, 4, 7, 0.92) 100%),
        url('/static/img/backgrounds/silkroad-map_ch.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.grid-single {
    grid-template-columns: 1fr !important;
}

.grid-single .sidebar-column {
    display: none;
}

/* ── Hero video ── */
.bg-video-container {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 520px;
    overflow: hidden;
    z-index: 0;
    box-sizing: border-box;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.video-shadow {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 2px 24px rgba(201, 162, 39, 0.15);
}

.wave-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 2;
}

.wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-repeat: repeat-x;
    opacity: 0.7;
}

.wave1 {
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100" viewBox="0 0 1440 100" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 60 Q 360 120 720 60 T 1440 60 V100 H0Z" fill="%23050407"/></svg>');
    animation: waveMove 8s linear infinite;
    z-index: 2;
}

.wave2 {
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100" viewBox="0 0 1440 100" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 80 Q 360 40 720 80 T 1440 80 V100 H0Z" fill="%23050407"/></svg>');
    opacity: 0.45;
    animation: waveMove2 12s linear infinite;
    z-index: 3;
}

@keyframes waveMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}

@keyframes waveMove2 {
    0% { background-position-x: 0; }
    100% { background-position-x: -1440px; }
}

.logo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 10;
    pointer-events: none;
}

.logo-link-on-video {
    display: inline-block;
    cursor: pointer;
    pointer-events: auto;
}

.logo-on-video {
    max-width: 420px;
    width: 55vw;
    height: auto;
    filter: drop-shadow(0 8px 32px #000) drop-shadow(0 2px 8px rgba(201, 162, 39, 0.5));
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
}

.logo-link-on-video:hover .logo-on-video,
.logo-link-on-video:focus .logo-on-video {
    filter: drop-shadow(0 4px 16px #f0c96b) drop-shadow(0 0 12px rgba(255, 251, 230, 0.6));
}

/* ── Podium ── */
.podium-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    margin: 3rem auto 5rem;
    padding: 0 1.25rem;
    max-width: 1100px;
}

.podium-card {
    position: relative;
    flex: 0 0 260px;
    background-color: #08070a;
    background-image:
        linear-gradient(180deg, rgba(5, 4, 7, 0.55) 0%, rgba(5, 4, 7, 0.78) 40%, rgba(5, 4, 7, 0.96) 100%),
        url('/static/img/backgrounds/card-bg_char.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-card), inset 0 -80px 70px -10px rgba(2, 2, 4, 0.95);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: visible;
}

.podium-card > * {
    position: relative;
    z-index: 1;
}

.podium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, transparent, var(--gold-500) 35%, var(--gold-300) 50%, var(--gold-500) 65%, transparent);
    opacity: 0.75;
    z-index: 2;
}

.podium-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-strong);
    box-shadow: var(--shadow-card), 0 0 28px rgba(201, 162, 39, 0.12);
}

.podium-card.first {
    flex: 0 0 300px;
    padding: 2.25rem 1.75rem 1.5rem;
    border-color: rgba(240, 201, 107, 0.55);
    box-shadow: var(--shadow-card), 0 0 40px rgba(201, 162, 39, 0.18), inset 0 -90px 75px -8px rgba(2, 2, 4, 0.98);
    background-image:
        linear-gradient(180deg, rgba(201, 162, 39, 0.05) 0%, rgba(5, 4, 7, 0.72) 45%, rgba(2, 2, 4, 0.98) 100%),
        url('/static/img/backgrounds/card-bg_char.png');
    z-index: 3;
}

.podium-card.second {
    z-index: 2;
    background-image:
        linear-gradient(180deg, rgba(184, 188, 198, 0.04) 0%, rgba(5, 4, 7, 0.75) 45%, rgba(2, 2, 4, 0.97) 100%),
        url('/static/img/backgrounds/card-bg_char.png');
}

.podium-card.third {
    z-index: 1;
    background-image:
        linear-gradient(180deg, rgba(205, 127, 50, 0.04) 0%, rgba(5, 4, 7, 0.75) 45%, rgba(2, 2, 4, 0.97) 100%),
        url('/static/img/backgrounds/card-bg_char.png');
}

.podium-card.second::before {
    background: linear-gradient(90deg, transparent, var(--silver) 35%, #e8eaef 50%, var(--silver) 65%, transparent);
}

.podium-card.third::before {
    background: linear-gradient(90deg, transparent, var(--bronze) 35%, #e8a96a 50%, var(--bronze) 65%, transparent);
}

.podium-card.first:hover {
    box-shadow: var(--shadow-card), 0 0 50px rgba(240, 201, 107, 0.25);
}

.rank-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    z-index: 3;
}

.podium-card.first .rank-badge {
    width: 72px;
    height: 72px;
    top: -36px;
}

.podium-avatar-link {
    display: block;
    text-decoration: none;
}

.podium-avatar {
    width: 120px;
    height: 120px;
    margin: 1rem auto 0.75rem;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.podium-card.first .podium-avatar {
    width: 132px;
    height: 132px;
    border-color: rgba(240, 201, 107, 0.5);
    box-shadow: 0 0 24px rgba(240, 201, 107, 0.2);
}

.podium-card.second .podium-avatar {
    border-color: rgba(184, 188, 198, 0.45);
}

.podium-card.third .podium-avatar {
    border-color: rgba(205, 127, 50, 0.45);
}

.podium-avatar img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.podium-avatar-link:hover .podium-avatar img {
    transform: scale(1.22);
}

.podium-avatar-link:hover .podium-avatar {
    transform: scale(1.04);
    border-color: var(--gold-300);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.podium-name {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0.5rem 0 0.25rem;
    letter-spacing: 0.5px;
}

.podium-player-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.podium-player-link:hover {
    color: var(--gold-300);
}

.podium-guild {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-dim);
    margin-bottom: 1rem;
    min-height: 1.25rem;
}

.podium-guild .guild-tag {
    color: var(--gold-400);
}

.podium-points {
    display: block;
    margin-top: 0.25rem;
    font-family: 'Cinzel', serif;
    color: var(--gold-300);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
}

.podium-points-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 0.15rem;
}

.podium-card.first .podium-points {
    color: var(--gold-100);
    text-shadow: 0 0 16px rgba(240, 201, 107, 0.35);
}

/* ── Category tabs ── */
.ranking-tabs-shell {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.ranking-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.4rem;
    background: linear-gradient(145deg, rgba(18, 14, 12, 0.95), rgba(10, 8, 12, 0.95));
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ranking-tab {
    flex: 1 1 auto;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink-dim);
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.ranking-tab i {
    font-size: 0.85rem;
    color: var(--gold-600);
    transition: color 0.25s ease;
}

.ranking-tab:hover {
    color: var(--gold-300);
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
}

.ranking-tab:hover i {
    color: var(--gold-300);
}

.ranking-tab.active {
    color: #0d0b06;
    background: linear-gradient(135deg, #f0c96b 0%, #c9a227 55%, #a8841f 100%);
    border-color: rgba(255, 248, 231, 0.35);
    box-shadow: 0 4px 18px rgba(201, 162, 39, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ranking-tab.active i {
    color: #0d0b06;
}

/* ── Search (inside panel header) ── */
.ranking-panel-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    position: relative;
    z-index: 1;
}

.ranking-panel-header .search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 420px;
}

.search-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0;
}

.search-label i {
    color: var(--gold-600);
    font-size: 0.65rem;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.35rem 0.35rem 0.35rem 1rem;
    background: rgba(8, 7, 10, 0.75);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-container:focus-within {
    border-color: var(--border-gold-strong);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 0.9rem;
    padding: 0.45rem 0;
    outline: none;
}

.search-input::placeholder {
    color: var(--ink-faint);
}

.search-button {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #0d0b06;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #f0c96b 0%, #c9a227 100%);
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-button:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.45);
}

/* ── Leaderboard panel ── */
.ranking-panel {
    max-width: 1100px;
    margin: 0 auto 5rem;
    background: linear-gradient(145deg, rgba(20, 16, 26, 0.98) 0%, rgba(12, 10, 16, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.ranking-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500) 30%, var(--gold-300) 50%, var(--gold-500) 70%, transparent);
    opacity: 0.7;
}

.ranking-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(201, 162, 39, 0.012) 30px,
        rgba(201, 162, 39, 0.012) 31px
    );
    pointer-events: none;
}

.ranking-panel-body {
    padding: 0.75rem 1.25rem 1.25rem;
    position: relative;
    z-index: 1;
}

.rank-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.rank-table thead th {
    padding: 0.65rem 1rem 0.85rem;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-600);
    text-align: left;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.rank-table thead th:last-child {
    text-align: right;
}

.rank-table tbody tr.rank-row td {
    padding: 0.85rem 1rem;
    color: var(--ink);
    background: rgba(8, 7, 10, 0.65);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rank-table tbody tr.rank-row td:first-child {
    border-left: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 10px 0 0 10px;
}

.rank-table tbody tr.rank-row td:last-child {
    border-right: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 0 10px 10px 0;
    text-align: right;
}

.rank-table tbody tr.rank-row:hover td {
    background: rgba(201, 162, 39, 0.07);
    border-color: rgba(201, 162, 39, 0.28);
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink-dim);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.player-cell-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.player-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.3);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.player-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 0.25s ease;
}

.player-cell-link:hover .player-icon img {
    transform: scale(1.25);
}

.char-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.player-cell-link:hover .char-name {
    color: var(--gold-300);
}

.player-cell-link:hover .player-icon {
    border-color: var(--gold-400);
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.25);
}

.guild-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-400);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.18);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.guild-tag:hover {
    color: var(--gold-100);
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(201, 162, 39, 0.35);
}

.level-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold-300);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.points-val {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: 0.3px;
}

.rank-table .text-muted {
    color: var(--ink-faint) !important;
    font-size: 0.85rem;
}

/* ── Pagination ── */
.pagination-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
    position: relative;
    z-index: 1;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.22);
    background: rgba(8, 7, 10, 0.7);
    color: var(--ink-dim);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-btn:hover {
    color: var(--gold-300);
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-1px);
}

.page-btn.active {
    color: #0d0b06;
    background: linear-gradient(135deg, #f0c96b 0%, #c9a227 100%);
    border-color: rgba(255, 248, 231, 0.35);
    box-shadow: 0 2px 12px rgba(201, 162, 39, 0.3);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .bg-video-container {
        height: 380px;
    }

    .podium-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
        margin-bottom: 4rem;
    }

    .podium-card,
    .podium-card.first {
        flex: none;
        width: min(100%, 320px);
        margin-bottom: 0;
    }

    .podium-card.first {
        order: -1;
    }

    .ranking-tabs-container {
        border-radius: var(--radius-lg);
    }

    .ranking-tab {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
    }

    .ranking-panel-header .search-section {
        max-width: none;
    }

    .search-container {
        min-width: 0;
        width: 100%;
    }

    .rank-table thead {
        display: none;
    }

    .rank-table tbody tr.rank-row {
        display: block;
        margin-bottom: 0.75rem;
    }

    .rank-table tbody tr.rank-row td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 0 !important;
        border-left: 1px solid rgba(201, 162, 39, 0.1) !important;
        border-right: 1px solid rgba(201, 162, 39, 0.1) !important;
        padding: 0.65rem 1rem;
    }

    .rank-table tbody tr.rank-row td:first-child {
        border-radius: 10px 10px 0 0 !important;
        border-top: 1px solid rgba(201, 162, 39, 0.1);
    }

    .rank-table tbody tr.rank-row td:last-child {
        border-radius: 0 0 10px 10px !important;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        text-align: right;
    }

    .rank-table tbody tr.rank-row td::before {
        content: attr(data-label);
        font-family: 'Cinzel', serif;
        font-size: 0.65rem;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--ink-faint);
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .rank-table tbody tr.rank-row td:nth-child(1)::before { content: 'Rank'; }
    .rank-table tbody tr.rank-row td:nth-child(2)::before { content: 'Player'; }
    .rank-table tbody tr.rank-row td:nth-child(3)::before { content: 'Guild'; }
    .rank-table tbody tr.rank-row td:nth-child(4)::before { content: 'Level'; }
    .rank-table tbody tr.rank-row td:nth-child(5)::before { content: 'Points'; }
}

@media (max-width: 480px) {
    .ranking-tab span {
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }

    .ranking-tab {
        padding: 0.6rem 0.5rem;
        gap: 0.35rem;
    }
}
