:root {
    --bg: #fff8f4;
    --panel: rgba(255, 255, 255, 0.88);
    --panel-strong: rgba(255, 255, 255, 0.96);
    --line: rgba(224, 160, 169, 0.24);
    --text: #50353f;
    --text-soft: #80626d;
    --accent: #f38fa8;
    --accent-deep: #e15e88;
    --accent-soft: #ffd7e4;
    --mint: #a3d9c9;
    --sky: #b9dfff;
    --peach: #ffd7b8;
    --shadow: 0 20px 60px rgba(215, 132, 148, 0.16);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 214, 227, 0.75), transparent 28%),
        radial-gradient(circle at top right, rgba(195, 232, 255, 0.9), transparent 26%),
        linear-gradient(180deg, #fff8f7 0%, #fffaf2 44%, #fffdf8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(8px);
}

body::before {
    top: 120px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: rgba(243, 143, 168, 0.14);
}

body::after {
    right: 2%;
    top: 36%;
    width: 220px;
    height: 220px;
    background: rgba(185, 223, 255, 0.16);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 120px;
}

.page-content,
.news-grid,
.staff-grid,
.feature-grid,
.rule-grid,
.contact-grid,
.dashboard-grid {
    display: grid;
    gap: 24px;
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    border-radius: 999px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(243, 143, 168, 0.18), rgba(185, 223, 255, 0.28));
    padding: 8px;
}

.brand-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.eyebrow {
    margin: 0 0 6px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 18px;
    font-size: 0.95rem;
}

.button-link,
.primary-button,
.secondary-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-link,
.primary-button {
    padding: 12px 20px;
    color: #fff8fb;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 10px 28px rgba(225, 94, 136, 0.28);
}

.secondary-button {
    padding: 11px 18px;
    color: var(--accent-deep);
    background: rgba(243, 143, 168, 0.12);
}

.button-link:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px) scale(1.01);
}

.button-link::after,
.primary-button::after,
.secondary-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.4), transparent 80%);
    transform: translateX(-120%);
}

.button-link:hover::after,
.primary-button:hover::after,
.secondary-button:hover::after {
    animation: shine 0.8s ease;
}

.card {
    position: relative;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    padding: 26px;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 214, 227, 0.4), rgba(185, 223, 255, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(215, 132, 148, 0.2);
    border-color: rgba(243, 143, 168, 0.35);
}

.card:hover::before {
    opacity: 1;
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    gap: 24px;
    margin-bottom: 28px;
}

.hero-copy {
    padding: 20px 4px 0;
}

.hero-copy h1 {
    text-shadow: 0 10px 30px rgba(225, 94, 136, 0.12);
}

.hero-copy h1,
.auth-shell h1,
.admin-header h1,
.balance-card h1,
.install-shell h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4.6rem);
    line-height: 0.95;
}

.hero-copy p,
.soft-copy,
.install-shell p,
.card p {
    color: var(--text-soft);
    line-height: 1.75;
}

.hero-chip,
.meta-pills span,
.hero-badges span,
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.86rem;
}

.hero-chip {
    margin-bottom: 16px;
    color: var(--accent-deep);
    background: rgba(243, 143, 168, 0.14);
    box-shadow: inset 0 0 0 1px rgba(243, 143, 168, 0.12);
}

.hero-actions,
.hero-badges,
.meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-logo {
    width: 180px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 14px 34px rgba(236, 151, 171, 0.28));
    animation: floatLogo 4.5s ease-in-out infinite;
}

.mini-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
    line-height: 1.8;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.grid-two,
section {
    margin-bottom: 28px;
}

.news-grid,
.feature-grid,
.rule-grid,
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.staff-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-card h3,
.feature-card h3,
.staff-card h3,
.rule-grid h3,
.contact-grid h3 {
    margin: 0 0 10px;
}

.news-card,
.feature-card,
.staff-card,
.rule-grid .card,
.contact-grid .card {
    backdrop-filter: blur(8px);
}

.news-date {
    margin-bottom: 10px;
    font-size: 0.82rem;
    color: var(--accent-deep);
}

.news-body {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    color: var(--text-soft);
    line-height: 1.7;
}

.staff-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.staff-avatar {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    object-fit: cover;
}

.placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(243, 143, 168, 0.18), rgba(163, 217, 201, 0.4));
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-deep);
}

.staff-card:hover .staff-avatar,
.staff-card:hover .placeholder {
    transform: scale(1.05) rotate(-2deg);
    transition: transform 0.24s ease;
}

.status-pill {
    margin-bottom: 16px;
}

.is-free {
    color: #1d6f56;
    background: rgba(163, 217, 201, 0.3);
}

.is-busy {
    color: #b24763;
    background: rgba(243, 143, 168, 0.2);
}

.is-offline {
    color: #636b80;
    background: rgba(185, 223, 255, 0.24);
}

.auth-shell,
.install-shell {
    width: min(620px, 100%);
    margin: 40px auto;
}

.order-shell {
    width: min(920px, 100%);
}

.calc-card {
    margin-bottom: 16px;
    background: linear-gradient(145deg, rgba(255, 247, 251, 0.96), rgba(255, 255, 255, 0.9));
}

.pricing-board,
.addon-board {
    margin-bottom: 16px;
}

.staff-order-board {
    margin-bottom: 18px;
}

.staff-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.staff-choice-card {
    position: relative;
    min-height: 100%;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(243, 143, 168, 0.18);
    background:
        radial-gradient(circle at top right, rgba(255, 215, 228, 0.42), transparent 42%),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(215, 132, 148, 0.12);
}

.staff-choice-card.is-neutral {
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-choice-card h3 {
    margin: 0 0 8px;
}

.staff-choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.staff-choice-copy {
    display: grid;
    gap: 8px;
}

.addon-grid {
    display: grid;
    gap: 12px;
}

.addon-item {
    display: grid;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(243, 143, 168, 0.14);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.addon-item:hover {
    transform: translateY(-2px);
    border-color: rgba(243, 143, 168, 0.32);
    box-shadow: 0 18px 40px rgba(225, 94, 136, 0.12);
}

.pricing-board .feature-card {
    background:
        radial-gradient(circle at top right, rgba(255, 215, 228, 0.52), transparent 45%),
        rgba(255, 255, 255, 0.84);
}

.pricing-board .feature-card p {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--accent-deep);
}

.order-summary-card strong {
    font-size: 1.12rem;
    color: var(--accent-deep);
}

.thankyou-burst {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    background: rgba(255, 246, 250, 0.45);
    backdrop-filter: blur(6px);
    pointer-events: none;
    animation: burstFade 1s ease forwards;
}

.thankyou-burst-card {
    padding: 24px 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 236, 243, 0.96));
    box-shadow: 0 24px 80px rgba(225, 94, 136, 0.24);
    text-align: center;
}

.thankyou-burst-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    color: var(--accent-deep);
}

.stack-form,
.small-form {
    display: grid;
    gap: 16px;
}

label span {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(211, 181, 187, 0.48);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font: inherit;
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-line input {
    width: auto;
}

.form-footnote {
    margin-top: 16px;
}

.flash {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 600;
}

.flash-success {
    background: rgba(163, 217, 201, 0.24);
    color: #255f4e;
}

.flash-error {
    background: rgba(243, 143, 168, 0.2);
    color: #9a3454;
}

.flash-info {
    background: rgba(185, 223, 255, 0.28);
    color: #3d6488;
}

.dashboard-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
}

.balance-amount {
    margin: 14px 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--accent-deep);
    font-weight: 700;
}

.news-list {
    display: grid;
    gap: 16px;
    padding-left: 18px;
    margin: 0;
}

.news-list strong,
.order-copy strong {
    display: block;
    margin-bottom: 4px;
}

.table-wrap {
    overflow-x: auto;
}

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

th,
td {
    padding: 15px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(224, 160, 169, 0.16);
    vertical-align: top;
}

th {
    color: var(--accent-deep);
    font-size: 0.86rem;
}

.admin-header {
    margin-bottom: 18px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.tab-buttons button {
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text);
    font: inherit;
    cursor: pointer;
}

.tab-buttons button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.hidden {
    display: none;
}

.admin-card-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.compact-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
}

.inline-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.order-card {
    grid-template-columns: minmax(0, 1fr) 320px;
    display: grid;
}

.music-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    grid-template-columns: 84px minmax(260px, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 251, 0.92));
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(215, 132, 148, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.music-orb {
    position: absolute;
    width: 160px;
    height: 160px;
    right: -24px;
    top: -60px;
    background: radial-gradient(circle, rgba(243, 143, 168, 0.18), transparent 70%);
    pointer-events: none;
}

.music-cover {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(243, 143, 168, 0.2), rgba(185, 223, 255, 0.3));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-main {
    display: grid;
    gap: 10px;
}

.music-copy {
    display: grid;
    gap: 2px;
}

.music-title {
    font-weight: 700;
    font-size: 1rem;
}

.music-copy a {
    font-size: 0.82rem;
    color: var(--accent-deep);
}

.music-subtitle {
    font-size: 0.84rem;
    color: var(--text-soft);
}

.volume-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.music-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.music-play-toggle,
.music-reset-toggle {
    border: 0;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.music-play-toggle {
    padding: 11px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 12px 30px rgba(225, 94, 136, 0.28);
}

.music-reset-toggle {
    padding: 10px 14px;
    color: var(--accent-deep);
    background: rgba(243, 143, 168, 0.12);
}

.music-play-toggle:hover,
.music-reset-toggle:hover {
    transform: translateY(-1px);
}

.volume-wrap input {
    width: 120px;
    padding: 0;
    accent-color: var(--accent-deep);
}

.music-progress-wrap input {
    width: 100%;
    padding: 0;
    accent-color: var(--accent);
}

.music-status {
    font-size: 0.84rem;
    color: var(--text-soft);
}

.music-bars {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 18px;
}

.music-bars span {
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--sky));
    animation: equalize 1.1s ease-in-out infinite;
    animation-play-state: paused;
}

.music-bars span:nth-child(1) { height: 7px; animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 16px; animation-delay: 0.12s; }
.music-bars span:nth-child(3) { height: 10px; animation-delay: 0.24s; }
.music-bars span:nth-child(4) { height: 14px; animation-delay: 0.36s; }

.music-dock.is-playing .music-bars span {
    animation-play-state: running;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fx-heart {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 80;
    pointer-events: none;
    font-size: 18px;
    animation: floatHeart 900ms ease-out forwards;
}

.button-ripple {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 600ms ease-out forwards;
    pointer-events: none;
}

.install-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 20px;
}

@media (max-width: 900px) {
    .site-header,
    .hero-panel,
    .dashboard-grid,
    .compact-card,
    .order-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .site-header {
        border-radius: 28px;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .music-dock {
        grid-template-columns: 1fr;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@keyframes shine {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes equalize {
    0%, 100% { transform: scaleY(0.65); opacity: 0.7; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

@keyframes floatHeart {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(-50%, -110px) scale(1.25); opacity: 0; }
}

@keyframes ripple {
    from { transform: translate(-50%, -50%) scale(0); opacity: 0.75; }
    to { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

@keyframes burstFade {
    0% { opacity: 0; }
    15% { opacity: 1; }
    100% { opacity: 0; }
}

.tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tab-bar .secondary-button.is-active {
    color: #fff8fb;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 12px 30px rgba(225, 94, 136, 0.26);
}

.admin-panel-stack {
    display: grid;
    gap: 24px;
}

.admin-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-news-list,
.admin-log-list {
    display: grid;
    gap: 16px;
}

.admin-news-item,
.admin-log-item,
.wage-card,
.gift-card,
.review-bubble {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(243, 143, 168, 0.16);
}

.admin-log-item strong,
.admin-news-item h3,
.wage-card h3 {
    display: block;
    margin-bottom: 8px;
}

.inline-form-table,
.compact-form {
    display: grid;
    gap: 10px;
}

.inline-form-table input,
.inline-form-table select,
.compact-form input,
.compact-form select,
.compact-form textarea,
.stack-form input,
.stack-form select,
.stack-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(243, 143, 168, 0.22);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font: inherit;
}

.stack-form label {
    display: grid;
    gap: 8px;
}

.table-wrap {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

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

th,
td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(243, 143, 168, 0.12);
}

thead th {
    color: var(--accent-deep);
    font-size: 0.86rem;
    background: rgba(255, 255, 255, 0.52);
}

.staff-admin-grid,
.wage-grid,
.gift-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.coupon-dashboard,
.coupon-board {
    gap: 24px;
}

.coupon-card strong {
    display: block;
    margin-bottom: 8px;
}

.coupon-card span {
    display: block;
    color: var(--accent-deep);
    font-weight: 600;
    margin-bottom: 10px;
}

.staff-admin-card {
    display: grid;
    gap: 16px;
}

.review-stack {
    display: grid;
    gap: 12px;
}

.review-bubble strong {
    display: block;
    margin-bottom: 6px;
}

.thankyou-burst {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 120;
    animation: burstFade 1.25s ease forwards;
}

.thankyou-burst-card {
    min-width: min(92vw, 360px);
    padding: 24px 26px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 248, 251, 0.97), rgba(255, 232, 241, 0.95));
    border: 1px solid rgba(243, 143, 168, 0.28);
    box-shadow: 0 22px 60px rgba(225, 94, 136, 0.22);
    text-align: center;
}

.thankyou-burst.is-tip .thankyou-burst-card {
    background: linear-gradient(145deg, rgba(255, 249, 240, 0.98), rgba(255, 231, 214, 0.95));
}

.thankyou-burst-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--accent-deep);
}

.thankyou-burst-card span {
    display: block;
    color: var(--text-soft);
    line-height: 1.7;
}

.hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .admin-two-col {
        grid-template-columns: 1fr;
    }

    th,
    td {
        min-width: 140px;
    }
}
