:root {
    --wc-bg: #030b14;
    --wc-panel: #071525;
    --wc-panel-2: #0a1b2f;
    --wc-panel-3: #10253a;
    --wc-border: rgba(154, 187, 216, 0.16);
    --wc-text: #f6fbff;
    --wc-muted: #93a6b8;
    --wc-green: #60d531;
    --wc-green-2: #39b51c;
    --wc-gold: #f2b94b;
    --wc-red: #ef4444;
    --wc-blue: #2aa7ff;
}

.wc-app-body {
    background: var(--wc-bg);
}

.wc-app-body .sidebar-wrapper,
.wc-app-body header,
.wc-app-body .page-footer,
.wc-app-body .back-to-top,
.wc-app-body .overlay {
    display: none !important;
}

.wc-app-body .wrapper,
.wc-app-body .page-wrapper {
    width: 100%;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--wc-bg);
}

.wc-page {
    min-height: 100vh;
    padding: 12px 14px 96px;
    background:
        radial-gradient(
            circle at 86% 2%,
            rgba(96, 213, 49, 0.18),
            transparent 24%
        ),
        radial-gradient(
            circle at 12% 20%,
            rgba(42, 167, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(180deg, #020814 0%, #06111f 42%, #030b14 100%);
    color: var(--wc-text);
    font-family:
        Inter,
        Roboto,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.wc-shell {
    width: min(1060px, 100%);
    margin: 0 auto;
}

.wc-appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    margin-bottom: 10px;
}

.wc-appbar-left,
.wc-appbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-icon-button {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(154, 187, 216, 0.18);
    border-radius: 8px;
    color: var(--wc-text);
    background: rgba(7, 21, 37, 0.72);
    text-decoration: none;
}

.wc-icon-button i {
    font-size: 22px;
}

.wc-appbar-title {
    margin: 0;
    color: var(--wc-text);
    font-size: 16px;
    font-weight: 950;
}

.wc-brand-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-brand-cup {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.wc-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
}

.wc-profile-avatar {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.wc-profile-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wc-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--wc-border);
    color: var(--wc-text);
    text-decoration: none;
}

.wc-list-link i {
    color: var(--wc-green);
    font-size: 20px;
}

.wc-hero {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 22px 18px;
    color: var(--wc-text);
    background:
        linear-gradient(
            90deg,
            rgba(3, 11, 20, 0.95) 0%,
            rgba(5, 17, 31, 0.82) 54%,
            rgba(7, 21, 37, 0.18) 100%
        ),
        var(--wc-hero-bg, url("../images/login-images/bg-login-img.jpg"))
            center/cover;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.wc-hero::after {
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 142px;
    height: 170px;
    content: "";
    background: var(--wc-hero-logo, url("../images/euro-logo.png"))
        center/contain no-repeat;
    filter: saturate(1.22) drop-shadow(0 22px 28px rgba(242, 185, 75, 0.3));
    opacity: 0.9;
}

.wc-hero > * {
    position: relative;
    z-index: 1;
}

.wc-hero-row,
.wc-toolbar,
.wc-card-head,
.wc-match-line,
.wc-team-row,
.wc-stat-grid,
.wc-badge-row,
.wc-bottom-nav,
.wc-score-row,
.wc-table-row {
    display: flex;
}

.wc-hero-row,
.wc-toolbar,
.wc-card-head,
.wc-match-line,
.wc-team-row,
.wc-score-row,
.wc-table-row {
    align-items: center;
}

.wc-hero-row,
.wc-card-head,
.wc-match-line,
.wc-table-row {
    justify-content: space-between;
    gap: 12px;
}

.wc-kicker {
    margin: 0 0 8px;
    color: var(--wc-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wc-title {
    max-width: 260px;
    margin: 0;
    color: var(--wc-text);
    font-size: 30px;
    line-height: 1.04;
    font-weight: 950;
    text-transform: uppercase;
}

.wc-subtitle {
    max-width: 250px;
    margin: 10px 0 0;
    color: #c7d3df;
    font-size: 14px;
    line-height: 1.45;
}

.wc-pill,
.wc-status,
.wc-tab,
.wc-badge,
.wc-rank-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.wc-pill {
    padding: 7px 10px;
    border: 1px solid rgba(96, 213, 49, 0.36);
    color: var(--wc-green);
    background: rgba(96, 213, 49, 0.12);
    font-variant-numeric: tabular-nums;
}

.wc-hero .wc-pill {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(7, 21, 37, 0.72);
}

.wc-countdown {
    min-width: 78px;
    color: var(--wc-green);
    font-family: Consolas, "SF Mono", monospace;
    letter-spacing: 0;
}

.wc-hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.wc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    width: 100%;
    padding: 11px 16px;
    border: 1px solid rgba(96, 213, 49, 0.34);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--wc-green) 0%,
        var(--wc-green-2) 100%
    );
    box-shadow: 0 18px 35px rgba(96, 213, 49, 0.18);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}

.wc-button:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.wc-button.secondary {
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--wc-text);
    background: rgba(7, 21, 37, 0.78);
    box-shadow: none;
}

.wc-button.ghost {
    width: auto;
    min-height: 34px;
    padding: 8px 12px;
    color: var(--wc-blue);
    background: rgba(42, 167, 255, 0.12);
    border-color: rgba(42, 167, 255, 0.46);
    box-shadow: none;
    text-transform: none;
}

.wc-button[disabled],
.wc-button.disabled {
    color: #9aa9b4;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: none;
    pointer-events: none;
}

.wc-section {
    margin-top: 16px;
}

.wc-section-title {
    margin: 0 0 10px;
    color: var(--wc-text);
    font-size: 17px;
    font-weight: 900;
}

.wc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.wc-card,
.wc-filter-panel,
.wc-table-card,
.wc-stat {
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    background: linear-gradient(
        180deg,
        rgba(12, 29, 48, 0.96),
        rgba(5, 16, 29, 0.96)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 30px rgba(0, 0, 0, 0.25);
}

.wc-card {
    overflow: hidden;
    border-left: 3px solid rgba(96, 213, 49, 0.74);
}

.wc-card-body {
    padding: 14px;
}

.wc-card-head {
    padding: 12px 14px;
    border-bottom: 1px solid var(--wc-border);
}

.wc-card-head strong,
.wc-table-card strong {
    color: var(--wc-text);
}

.wc-meta {
    color: var(--wc-muted);
    font-size: 11px;
    font-weight: 800;
}

.wc-team-row {
    flex-direction: column;
    gap: 7px;
    min-width: 0;
    text-align: center;
}

.wc-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.wc-team-name {
    max-width: 116px;
    color: var(--wc-text);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.wc-vs {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #d5dfeb;
    font-size: 17px;
    font-weight: 950;
}

.wc-match-line {
    margin-top: 12px;
}

.wc-status {
    min-height: 28px;
    padding: 7px 9px;
    border: 1px solid transparent;
}

.wc-status.not-predicted {
    color: #cfd8e2;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.wc-status.predicted {
    color: var(--wc-blue);
    background: rgba(42, 167, 255, 0.12);
    border-color: rgba(42, 167, 255, 0.46);
}

.wc-status.open,
.wc-status.opening-soon {
    color: var(--wc-green);
    background: rgba(96, 213, 49, 0.12);
    border-color: rgba(96, 213, 49, 0.5);
}

.wc-status.opening-soon {
    color: var(--wc-gold);
    background: rgba(242, 185, 75, 0.1);
    border-color: rgba(242, 185, 75, 0.45);
}

.wc-status.locked {
    color: var(--wc-gold);
    background: rgba(242, 185, 75, 0.1);
    border-color: rgba(242, 185, 75, 0.5);
}

.wc-status.won {
    color: var(--wc-green);
    background: rgba(96, 213, 49, 0.12);
    border-color: rgba(96, 213, 49, 0.5);
}

.wc-status.lost {
    color: #ff6b6b;
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.5);
}

.wc-status.live {
    color: #fff;
    background: rgba(239, 68, 68, 0.22);
    border-color: rgba(239, 68, 68, 0.52);
}

.wc-status.upcoming {
    color: var(--wc-green);
    background: rgba(96, 213, 49, 0.12);
    border-color: rgba(96, 213, 49, 0.38);
}

.wc-status.completed {
    color: #cbd7e2;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.13);
}

.wc-filter-panel {
    padding: 12px;
}

.wc-toolbar {
    flex-wrap: wrap;
    gap: 10px;
}

.wc-select,
.wc-score-input,
.wc-app-body .form-control {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(154, 187, 216, 0.18);
    border-radius: 8px;
    background: rgba(3, 11, 20, 0.74);
    color: var(--wc-text);
    font-weight: 800;
}

.wc-app-body .form-control::placeholder,
.wc-app-body .wc-select::placeholder,
.wc-app-body .wc-score-input::placeholder,
.wc-admin-body .form-control::placeholder,
.wc-login-body .form-control::placeholder {
    color: #9abbd8;
    opacity: 1;
}

.wc-password-field {
    position: relative;
}

.wc-password-field .form-control {
    padding-right: 48px;
}

.wc-password-eye {
    position: absolute;
    top: 50%;
    right: 8px;
    z-index: 4;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #dbeafe;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease;
}

.wc-password-eye:hover,
.wc-password-eye:focus {
    background: rgba(96, 213, 49, 0.12);
    color: var(--wc-green);
    outline: 0;
}

.wc-password-eye i {
    font-size: 20px;
    pointer-events: none;
}

.wc-select:disabled {
    color: #aab9c6;
    opacity: 1;
}

.wc-filter-field {
    flex: 1 1 188px;
}

.wc-field-label {
    display: block;
    margin-bottom: 6px;
    color: var(--wc-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.wc-tabs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.wc-tab {
    flex: 1 0 auto;
    min-width: 92px;
    padding: 11px 12px;
    color: #b8c4cf;
    background: transparent;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    text-transform: uppercase;
}

.wc-tab.active {
    color: var(--wc-green);
    border-bottom-color: var(--wc-green);
    background: linear-gradient(
        180deg,
        rgba(96, 213, 49, 0.13),
        rgba(96, 213, 49, 0.02)
    );
}

.wc-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.wc-stat {
    padding: 12px;
    text-align: center;
}

.wc-stat span {
    display: block;
    color: var(--wc-muted);
    font-size: 10px;
    font-weight: 850;
}

.wc-stat strong {
    display: block;
    margin-top: 6px;
    color: var(--wc-text);
    font-size: 22px;
    line-height: 1;
}

.wc-badge-row {
    flex-wrap: wrap;
    gap: 9px;
}

.wc-badge {
    padding: 10px 12px;
    border: 1px solid rgba(242, 185, 75, 0.28);
    color: var(--wc-gold);
    background: rgba(242, 185, 75, 0.1);
}

.wc-score-row {
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
}

.wc-score-input {
    width: 70px;
    text-align: center;
    font-size: 22px;
    font-weight: 950;
}

.wc-predict-modal .modal-dialog {
    width: min(420px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.wc-predict-modal .modal-content {
    min-height: 100%;
    border: 1px solid var(--wc-border);
    border-radius: 10px;
    background:
        radial-gradient(
            circle at 88% 0%,
            rgba(96, 213, 49, 0.1),
            transparent 22%
        ),
        linear-gradient(180deg, #020814 0%, #071525 100%);
    color: var(--wc-text);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
}

.wc-predict-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-bottom: 0;
    padding: 10px 14px;
}

.wc-icon-button.ghost-space {
    visibility: hidden;
}

.wc-predict-modal .modal-body {
    padding: 8px 14px 18px;
}

.wc-predict-card,
.wc-predict-section {
    border: 1px solid var(--wc-border);
    background: linear-gradient(
        180deg,
        rgba(12, 29, 48, 0.96),
        rgba(5, 16, 29, 0.96)
    );
}

.wc-predict-card {
    border-radius: 8px 8px 0 0;
    padding: 18px 14px 20px;
    text-align: center;
}

.wc-predict-meta {
    margin-bottom: 16px;
    color: #b7c5d2;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.65;
}

.wc-predict-teams,
.wc-winner-grid,
.wc-stepper-grid,
.wc-stepper,
.wc-prediction-summary {
    display: flex;
    align-items: center;
}

.wc-predict-teams {
    justify-content: space-around;
    gap: 16px;
}

.wc-predict-section {
    border-top: 0;
    padding: 16px 14px;
}

.wc-predict-section:last-child {
    border-radius: 0 0 8px 8px;
}

.wc-predict-section h3 {
    margin: 0 0 6px;
    color: var(--wc-text);
    font-size: 15px;
    font-weight: 950;
}

.wc-predict-section p {
    margin: 0 0 12px;
    color: var(--wc-muted);
    font-size: 12px;
    font-weight: 800;
}

.wc-winner-grid {
    gap: 9px;
}

.wc-predict-option {
    display: grid;
    flex: 1 1 0;
    min-height: 60px;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(154, 187, 216, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--wc-text);
    font-size: 12px;
    font-weight: 900;
}

.wc-predict-option.active {
    border-color: rgba(96, 213, 49, 0.82);
    background: rgba(96, 213, 49, 0.18);
    box-shadow: inset 0 0 0 1px rgba(96, 213, 49, 0.22);
}

.wc-predict-option:disabled,
.wc-stepper button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.wc-predict-option img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.wc-predict-option i {
    color: var(--wc-muted);
    font-size: 20px;
}

.wc-stepper-grid {
    justify-content: space-between;
    gap: 10px;
}

.wc-stepper-grid > div {
    flex: 1 1 0;
    min-width: 0;
}

.wc-stepper-label {
    display: block;
    margin-bottom: 8px;
    color: #c8d5e1;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}

.wc-stepper {
    overflow: hidden;
    justify-content: center;
    border: 1px solid rgba(154, 187, 216, 0.2);
    border-radius: 8px;
}

.wc-stepper button {
    width: 40px;
    height: 44px;
    border: 0;
    background: rgba(255, 255, 255, 0.05);
    color: var(--wc-text);
    font-size: 20px;
}

.wc-stepper .wc-score-input {
    width: 54px;
    min-height: 44px;
    border: 0;
    border-right: 1px solid rgba(154, 187, 216, 0.16);
    border-left: 1px solid rgba(154, 187, 216, 0.16);
    border-radius: 0;
    background: transparent;
}

.wc-score-divider {
    color: #d7e2ee;
    font-size: 20px;
    transform: translateY(12px);
}

.wc-prediction-summary {
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: #c8d5e1;
}

.wc-prediction-summary strong {
    color: var(--wc-text);
    font-size: 21px;
}

.wc-modal-lock-note {
    margin-top: 12px;
    color: var(--wc-muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.wc-admin-banner-preview {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border: 1px solid var(--wc-border);
    border-radius: 8px;
}

.wc-history-list,
.wc-leader-list {
    display: grid;
    gap: 10px;
}

.wc-table-card {
    padding: 12px;
}

.wc-table-row + .wc-table-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--wc-border);
}

.wc-rank-pill {
    width: 34px;
    height: 34px;
    color: #03120a;
    background: var(--wc-green);
}

.wc-empty {
    padding: 20px;
    border: 1px dashed rgba(154, 187, 216, 0.26);
    border-radius: 8px;
    background: rgba(7, 21, 37, 0.78);
    color: var(--wc-muted);
    text-align: center;
}

.wc-bottom-nav {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 1029;
    justify-content: space-around;
    gap: 4px;
    max-width: 520px;
    margin: 0 auto;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    background: rgba(4, 12, 22, 0.94);
    box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
}

.wc-bottom-nav a {
    display: grid;
    min-width: 56px;
    min-height: 50px;
    place-items: center;
    color: #9aa7b5;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.wc-bottom-nav i {
    font-size: 22px;
}

.wc-bottom-nav a.active {
    color: var(--wc-green);
}

.wc-admin-note {
    border: 1px solid rgba(96, 213, 49, 0.24);
    border-left: 4px solid var(--wc-green);
    border-radius: 8px;
    padding: 12px;
    background: rgba(96, 213, 49, 0.08);
    color: #d9f6cf;
}

.wc-admin-body,
.wc-admin-body .page-wrapper {
    background: var(--wc-bg);
}

.wc-admin-body .sidebar-wrapper,
.wc-admin-body .topbar,
.wc-admin-body .page-footer {
    border-color: var(--wc-border);
    background: #04101d;
    color: var(--wc-text);
}

.wc-admin-body .logo-text,
.wc-admin-body .menu-title,
.wc-admin-body .parent-icon,
.wc-admin-body .user-name {
    color: var(--wc-text);
}

.wc-admin-body .metismenu a,
.wc-admin-body .designattion {
    color: var(--wc-muted);
}

.wc-admin-body .metismenu a:hover,
.wc-admin-body .metismenu .mm-active > a {
    color: var(--wc-green);
}

.wc-admin-body .page-content {
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(96, 213, 49, 0.15),
            transparent 26%
        ),
        linear-gradient(180deg, #020814 0%, #071525 100%);
    color: var(--wc-text);
}

.wc-admin-body .card {
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    background: linear-gradient(
        180deg,
        rgba(12, 29, 48, 0.96),
        rgba(5, 16, 29, 0.96)
    );
    color: var(--wc-text);
}

.wc-admin-body .text-secondary,
.wc-admin-body .text-muted,
.wc-admin-body .breadcrumb-title {
    color: var(--wc-muted) !important;
}

.wc-admin-body .card form h6:not(.text-danger),
.wc-admin-body .card form label,
.wc-admin-body .card form .form-label,
.wc-admin-body .card form .wc-field-label {
    color: var(--wc-text) !important;
}

.wc-admin-body .form-control,
.wc-admin-body .form-select,
.wc-admin-body .input-group-text {
    border-color: rgba(154, 187, 216, 0.2);
    background: rgba(3, 11, 20, 0.74);
    color: var(--wc-text);
}

.wc-admin-body .form-control:disabled,
.wc-admin-body .form-select:disabled {
    color: #8ea0b0;
    background: rgba(255, 255, 255, 0.07);
    opacity: 1;
}

.wc-admin-body .form-check-input {
    border-color: rgba(154, 187, 216, 0.42);
    background-color: rgba(3, 11, 20, 0.74);
}

.wc-admin-body .form-check-input:checked {
    border-color: var(--wc-green);
    background-color: var(--wc-green);
}

.wc-admin-body .table-responsive,
.wc-admin-body .dataTables_wrapper,
.wc-app-body .table-responsive,
.wc-app-body .dataTables_wrapper {
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
}

.wc-admin-body .dataTables_wrapper,
.wc-app-body .dataTables_wrapper {
    padding: 12px;
}

.wc-admin-body .table,
.wc-admin-body table.dataTable,
.wc-admin-body .dataTable,
.wc-app-body .table,
.wc-app-body table.dataTable,
.wc-app-body .dataTable {
    --bs-table-bg: #ffffff;
    --bs-table-color: #111827;
    --bs-table-striped-bg: #f8fafc;
    --bs-table-striped-color: #111827;
    --bs-table-hover-bg: #eef6ff;
    --bs-table-hover-color: #111827;
    --bs-table-border-color: #e5e7eb;
    width: 100%;
    margin-bottom: 0;
    border-color: #e5e7eb !important;
    background: #ffffff !important;
    color: #111827 !important;
}

.wc-admin-body .table thead,
.wc-admin-body .table thead tr,
.wc-admin-body .table thead th,
.wc-admin-body table.dataTable thead,
.wc-admin-body table.dataTable thead tr,
.wc-admin-body table.dataTable thead th,
.wc-app-body .table thead,
.wc-app-body .table thead tr,
.wc-app-body .table thead th,
.wc-app-body table.dataTable thead,
.wc-app-body table.dataTable thead tr,
.wc-app-body table.dataTable thead th {
    border-color: #334155 !important;
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.wc-admin-body .table tbody tr,
.wc-admin-body table.dataTable tbody tr,
.wc-app-body .table tbody tr,
.wc-app-body table.dataTable tbody tr {
    background: #ffffff !important;
    color: #111827 !important;
}

.wc-admin-body .table.table-striped tbody tr:nth-of-type(odd),
.wc-admin-body table.dataTable.table-striped tbody tr:nth-of-type(odd),
.wc-app-body .table.table-striped tbody tr:nth-of-type(odd),
.wc-app-body table.dataTable.table-striped tbody tr:nth-of-type(odd) {
    --bs-table-accent-bg: #f8fafc;
    background: #f8fafc !important;
    color: #111827 !important;
}

.wc-admin-body .table.table-striped tbody tr:nth-of-type(even),
.wc-admin-body table.dataTable.table-striped tbody tr:nth-of-type(even),
.wc-app-body .table.table-striped tbody tr:nth-of-type(even),
.wc-app-body table.dataTable.table-striped tbody tr:nth-of-type(even) {
    --bs-table-accent-bg: #ffffff;
    background: #ffffff !important;
    color: #111827 !important;
}

.wc-admin-body .table tbody td,
.wc-admin-body .table tbody th,
.wc-admin-body table.dataTable tbody td,
.wc-admin-body table.dataTable tbody th,
.wc-app-body .table tbody td,
.wc-app-body .table tbody th,
.wc-app-body table.dataTable tbody td,
.wc-app-body table.dataTable tbody th {
    border-color: #e5e7eb !important;
    background-color: inherit !important;
    color: #111827 !important;
    box-shadow: none !important;
}

.wc-admin-body .table tbody tr:hover,
.wc-admin-body table.dataTable tbody tr:hover,
.wc-app-body .table tbody tr:hover,
.wc-app-body table.dataTable tbody tr:hover {
    --bs-table-accent-bg: #eef6ff;
    background: #eef6ff !important;
    color: #111827 !important;
}

.wc-admin-body .table tbody tr:hover > *,
.wc-admin-body table.dataTable tbody tr:hover > *,
.wc-app-body .table tbody tr:hover > *,
.wc-app-body table.dataTable tbody tr:hover > * {
    background-color: #eef6ff !important;
    color: #111827 !important;
}

.wc-admin-body .table .badge,
.wc-app-body .table .badge {
    color: #ffffff !important;
    text-shadow: none;
}

.wc-admin-body .table .btn,
.wc-app-body .table .btn {
    border-width: 1px;
    font-weight: 700;
}

.wc-admin-body .table .btn-warning,
.wc-app-body .table .btn-warning {
    border-color: #d97706;
    background: #f59e0b;
    color: #111827 !important;
}

.wc-admin-body .table .btn-info,
.wc-app-body .table .btn-info {
    border-color: #0284c7;
    background: #0ea5e9;
    color: #ffffff !important;
}

.wc-admin-body .table .btn-primary,
.wc-app-body .table .btn-primary {
    border-color: #16a34a;
    background: #16a34a;
    color: #ffffff !important;
}

.wc-admin-body .table .btn-danger,
.wc-app-body .table .btn-danger {
    border-color: #dc2626;
    background: #ef4444;
    color: #ffffff !important;
}

.wc-admin-body .table .btn-secondary,
.wc-app-body .table .btn-secondary {
    border-color: #475569;
    background: #64748b;
    color: #ffffff !important;
}

.wc-admin-body .table .form-check,
.wc-admin-body .table .form-check-label,
.wc-app-body .table .form-check,
.wc-app-body .table .form-check-label {
    color: #111827 !important;
}

.wc-admin-body .table .wc-table-state-button {
    display: inline-flex;
    min-width: 78px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: capitalize;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.wc-admin-body .table button.wc-table-state-button {
    cursor: pointer;
}

.wc-admin-body .table button.wc-table-state-button:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
}

.wc-admin-body .table .wc-table-state-button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.wc-admin-body .table .wc-table-state-button.is-user {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #111827 !important;
}

.wc-admin-body .table .wc-table-state-button.is-admin {
    border-color: #1d4ed8;
    background: #dbeafe;
    color: #1e3a8a !important;
}

.wc-admin-body .table .wc-table-state-button.is-active {
    border-color: #16a34a;
    background: #34d399;
    color: #064e3b !important;
}

.wc-admin-body .table .wc-table-state-button.is-inactive {
    border-color: #ea580c;
    background: #fed7aa;
    color: #7c2d12 !important;
}

.wc-admin-body .table .wc-table-state-button.is-static {
    cursor: default;
}

.wc-admin-body .table .wc-user-status-control {
    display: inline-flex;
    min-width: 88px;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wc-admin-body .table .wc-user-status-control .badge {
    min-width: 74px;
    padding: 6px 10px;
}

.wc-admin-body .dataTables_wrapper,
.wc-admin-body .dataTables_wrapper label,
.wc-admin-body .dataTables_wrapper .dataTables_info,
.wc-admin-body .dataTables_wrapper .dataTables_length,
.wc-admin-body .dataTables_wrapper .dataTables_filter,
.wc-app-body .dataTables_wrapper,
.wc-app-body .dataTables_wrapper label,
.wc-app-body .dataTables_wrapper .dataTables_info,
.wc-app-body .dataTables_wrapper .dataTables_length,
.wc-app-body .dataTables_wrapper .dataTables_filter {
    color: #111827 !important;
}

.wc-admin-body .dataTables_wrapper input,
.wc-admin-body .dataTables_wrapper select,
.wc-app-body .dataTables_wrapper input,
.wc-app-body .dataTables_wrapper select {
    min-height: 38px;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px;
    background: #ffffff !important;
    color: #111827 !important;
}

.wc-admin-body .dataTables_wrapper .paginate_button,
.wc-admin-body .dataTables_wrapper .pagination .page-link,
.wc-app-body .dataTables_wrapper .paginate_button,
.wc-app-body .dataTables_wrapper .pagination .page-link {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #111827 !important;
}

.wc-admin-body .dataTables_wrapper .paginate_button:hover,
.wc-admin-body .dataTables_wrapper .pagination .page-link:hover,
.wc-app-body .dataTables_wrapper .paginate_button:hover,
.wc-app-body .dataTables_wrapper .pagination .page-link:hover {
    border-color: #16a34a !important;
    background: #eef6ff !important;
    color: #111827 !important;
}

.wc-admin-body .dataTables_wrapper .paginate_button.current,
.wc-admin-body .dataTables_wrapper .paginate_button.current:hover,
.wc-admin-body .dataTables_wrapper .pagination .active .page-link,
.wc-admin-body .dataTables_wrapper .pagination .active .page-link:hover,
.wc-app-body .dataTables_wrapper .paginate_button.current,
.wc-app-body .dataTables_wrapper .paginate_button.current:hover,
.wc-app-body .dataTables_wrapper .pagination .active .page-link,
.wc-app-body .dataTables_wrapper .pagination .active .page-link:hover {
    border-color: #16a34a !important;
    background: #16a34a !important;
    color: #ffffff !important;
}

.wc-admin-body .dataTables_wrapper .paginate_button.disabled,
.wc-admin-body .dataTables_wrapper .paginate_button.disabled:hover,
.wc-admin-body .dataTables_wrapper .pagination .disabled .page-link,
.wc-admin-body .dataTables_wrapper .pagination .disabled .page-link:hover,
.wc-app-body .dataTables_wrapper .paginate_button.disabled,
.wc-app-body .dataTables_wrapper .paginate_button.disabled:hover,
.wc-app-body .dataTables_wrapper .pagination .disabled .page-link,
.wc-app-body .dataTables_wrapper .pagination .disabled .page-link:hover {
    border-color: #e5e7eb !important;
    background: #f8fafc !important;
    color: #94a3b8 !important;
}

.wc-login-body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 78% 8%,
            rgba(96, 213, 49, 0.18),
            transparent 24%
        ),
        linear-gradient(180deg, #020814 0%, #071525 100%);
}

.wc-login-body .section-authentication-signin {
    min-height: 100vh;
    margin: 0 !important;
}

.wc-login-body .card {
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    background: linear-gradient(
        180deg,
        rgba(12, 29, 48, 0.96),
        rgba(5, 16, 29, 0.96)
    );
    color: var(--wc-text);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.wc-login-body .logo-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-height: auto;
    padding: 0px;

    background: rgba(255, 255, 255, 0);
    border: 0px solid rgba(255, 255, 255, 0.95);
    border-radius: 0px;

    box-shadow:
        0 0 2px rgba(34, 197, 94, 0.8),
        0 0 3px rgba(34, 197, 94, 0.5),
        0 0 10px rgba(34, 197, 94, 0.3);

    transition: all 0.3s ease;
}

.wc-login-body .logo-card::before {
    content: "";
    position: absolute;
    inset: -0px;
    border-radius: 0px;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);

    pointer-events: none;
}

.wc-login-body .logo-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 25px rgba(34, 197, 94, 0.8),
        0 0 30px rgba(34, 197, 94, 0.5),
        0 0 60px rgba(34, 197, 94, 0.3);
}

.wc-login-body .logo-card img {
    width: 120px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.wc-login-body h5,
.wc-login-body label {
    color: var(--wc-text);
}

.wc-login-body p {
    color: var(--wc-muted);
}

.wc-login-hint {
    color: #9abbd8;
    font-size: 12px;
    font-weight: 700;
}

.wc-login-body .form-control,
.wc-login-body .input-group-text {
    border-color: rgba(154, 187, 216, 0.18);
    background: rgba(3, 11, 20, 0.74);
    color: var(--wc-text);
}

.wc-login-body .wc-password-toggle .form-control {
    border-right: 0;
}

.wc-login-body .wc-password-toggle-button {
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 0;
    color: #dbeafe;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wc-login-body .wc-password-toggle-button:hover,
.wc-login-body .wc-password-toggle-button:focus {
    background: rgba(96, 213, 49, 0.12);
    color: var(--wc-green);
}

.wc-login-body .wc-password-toggle-button i {
    font-size: 20px;
    pointer-events: none;
}

.wc-login-body .wc-password-toggle .form-control:focus + .wc-password-toggle-button {
    border-color: rgba(96, 213, 49, 0.45);
}

.wc-login-body .btn-primary {
    border-color: rgba(96, 213, 49, 0.34);
    background: linear-gradient(
        135deg,
        var(--wc-green) 0%,
        var(--wc-green-2) 100%
    );
    font-weight: 900;
}

.wc-swal-message {
    color: #1f2937;
    text-align: left;
}

.wc-swal-message p {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.55;
}

.wc-swal-action {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #56d62f 0%, #29b520 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.wc-swal-action:hover {
    filter: brightness(0.96);
}

@media (min-width: 640px) {
    .wc-page {
        padding: 18px 18px 110px;
    }

    .wc-hero-actions {
        grid-template-columns: minmax(220px, 320px) minmax(160px, 220px);
    }

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

    .wc-stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .wc-app-body .page-wrapper {
        display: flex;
        justify-content: center;
    }

    .wc-page {
        width: 100%;
        padding: 24px 24px 104px;
    }

    .wc-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wc-bottom-nav {
        right: 24px;
        left: 24px;
    }
}

/* Mobile fantasy-sports reference styling */
.wc-app-body {
    background: #020712;
}

.wc-app-body .page-wrapper {
    display: flex;
    justify-content: center;
}

.wc-app-body .wc-page {
    width: min(100%, 410px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 10px 10px 92px;
    border: 1px solid rgba(99, 130, 165, 0.22);
    border-radius: 16px;
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(77, 170, 255, 0.12),
            transparent 22%
        ),
        linear-gradient(180deg, #020817 0%, #04101d 48%, #020815 100%);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
    overflow: hidden;
}

.wc-app-body .wc-shell {
    width: 100%;
    max-width: 390px;
}

.wc-app-body .wc-appbar {
    min-height: 42px;
    margin-bottom: 8px;
}

.wc-app-body .wc-hero .wc-hero-appbar {
    margin-bottom: 24px;
}

.wc-app-body .wc-icon-button {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
}

.wc-app-body .wc-icon-button i {
    font-size: 20px;
}

.wc-app-body .wc-brand-lockup {
    gap: 8px;
}

.wc-app-body .wc-brand-cup {
    width: 30px;
    height: 30px;
}

.wc-app-body .wc-kicker {
    margin-bottom: 5px;
    font-size: 10px;
    color: #64db2f;
}

.wc-app-body .wc-appbar-title {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.05;
}

.wc-app-body .wc-brand-lockup .wc-appbar-title {
    color: #64db2f;
}

.wc-app-body .wc-avatar {
    width: 38px;
    height: 38px;
    border-width: 2px;
}

.wc-app-body .wc-hero {
    min-height: 456px;
    margin: -10px -10px 0;
    padding: 16px 18px 18px;
    border: 0;
    border-radius: 0 0 8px 8px;
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 18, 0.98) 0%,
            rgba(4, 14, 27, 0.86) 48%,
            rgba(5, 15, 29, 0.16) 100%
        ),
        var(--wc-hero-bg, url("../images/login-images/bg-login-img.jpg"))
            center/cover;
    box-shadow: none;
}

.wc-app-body .wc-hero::after {
    right: -2px;
    bottom: 104px;
    width: 178px;
    height: 248px;
    opacity: 0.96;
    filter: saturate(1.2) drop-shadow(0 28px 26px rgba(242, 185, 75, 0.28));
}

.wc-app-body .wc-hero-row {
    display: block;
    margin-top: 4px;
}

.wc-app-body .wc-hero-row > .wc-pill {
    display: none;
}

.wc-app-body .wc-title {
    max-width: 210px;
    font-size: 28px;
    line-height: 1.02;
}

.wc-app-body .wc-subtitle {
    max-width: 205px;
    margin-top: 10px;
    color: #d1dbe6;
    font-size: 13px;
    line-height: 1.35;
}

.wc-next-match-card {
    width: min(268px, 100%);
    margin-top: 12px;
    padding: 13px 13px 10px;
    border: 1px solid rgba(134, 171, 205, 0.18);
    border-radius: 8px;
    background: rgba(5, 18, 33, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}

.wc-next-match-card .wc-kicker {
    margin-bottom: 10px;
    text-align: center;
}

.wc-next-teams {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    align-items: center;
    gap: 6px;
}

.wc-next-center {
    display: grid;
    gap: 7px;
    place-items: center;
}

.wc-next-countdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    text-align: center;
}

.wc-next-countdown strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

.wc-next-countdown span {
    display: block;
    margin-top: 4px;
    color: #9ba9b7;
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
}

.wc-next-date {
    margin-top: 10px;
    color: #b7c4d0;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.wc-app-body .wc-hero-actions {
    display: block;
    margin-top: 16px;
}

.wc-app-body .wc-button {
    min-height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #66d936 0%, #38b91e 100%);
    box-shadow: 0 18px 34px rgba(88, 214, 47, 0.24);
    font-size: 13px;
}

.wc-app-body .wc-button[disabled],
.wc-app-body .wc-button.disabled {
    color: #ffffff !important;
    opacity: 0.95;
}

.wc-app-body .wc-button[disabled] i,
.wc-app-body .wc-button.disabled i {
    color: #ffffff !important;
}

.wc-app-body .wc-section {
    margin-top: 12px;
}

.wc-app-body .wc-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.wc-app-body .wc-stat {
    min-height: 92px;
    padding: 10px 6px;
    border-color: rgba(134, 171, 205, 0.13);
    background: linear-gradient(
        180deg,
        rgba(12, 30, 52, 0.96),
        rgba(6, 18, 33, 0.96)
    );
}

.wc-app-body .wc-stat i {
    display: grid;
    width: 30px;
    height: 30px;
    margin: 0 auto 7px;
    place-items: center;
    border-radius: 50%;
    background: rgba(96, 213, 49, 0.14);
    color: #64db2f;
    font-size: 18px;
}

.wc-app-body .wc-stat:nth-child(2) i {
    background: rgba(42, 167, 255, 0.14);
    color: #2aa7ff;
}

.wc-app-body .wc-stat:nth-child(3) i {
    background: rgba(168, 85, 247, 0.16);
    color: #a855f7;
}

.wc-app-body .wc-stat:nth-child(4) i {
    background: rgba(242, 185, 75, 0.15);
    color: #f2b94b;
}

.wc-app-body .wc-stat span {
    color: #9aaaba;
    font-size: 9px;
}

.wc-app-body .wc-stat strong {
    margin-top: 4px;
    font-size: 18px;
}

.wc-app-body .wc-filter-panel {
    padding: 0 0 10px;
    border-color: rgba(134, 171, 205, 0.13);
    background: linear-gradient(
        180deg,
        rgba(8, 22, 39, 0.98),
        rgba(4, 14, 27, 0.98)
    );
}

.wc-app-body .wc-filter-panel form {
    padding: 10px;
}

.wc-app-body .wc-tabs {
    gap: 0;
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(134, 171, 205, 0.11);
}

.wc-app-body .wc-tab {
    min-width: 0;
    min-height: 42px;
    padding: 12px 6px 10px;
    color: #c0cad5;
    font-size: 10px;
    border-bottom-width: 2px;
}

.wc-app-body .wc-tab.active {
    color: #ffffff;
}

.wc-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef2c2c;
}

.wc-app-body .wc-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.wc-app-body .wc-toolbar .wc-field-label {
    display: none;
}

.wc-app-body .wc-select {
    min-height: 38px;
    padding: 0 10px;
    border-color: rgba(134, 171, 205, 0.12);
    background: rgba(2, 9, 18, 0.58);
    color: #dbe6f2;
    font-size: 10px;
}

.wc-app-body .wc-grid {
    grid-template-columns: 1fr;
    gap: 9px;
}

.wc-app-body .wc-match-card {
    min-height: 112px;
    border-left-width: 3px;
    border-color: rgba(134, 171, 205, 0.13);
    background: linear-gradient(
        145deg,
        rgba(10, 27, 48, 0.98),
        rgba(4, 15, 28, 0.98)
    );
}

.wc-app-body .wc-match-card:nth-child(2n) {
    border-left-color: #2aa7ff;
}

.wc-match-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 0;
}

.wc-match-top strong {
    color: #64db2f;
    font-size: 10px;
}

.wc-match-top span {
    color: #a8b8c8;
    font-size: 9px;
    font-weight: 800;
}

.wc-app-body .wc-match-card .wc-card-body {
    padding: 8px 12px 12px;
}

.wc-match-main {
    display: grid;
    grid-template-columns: 56px 1fr 70px 76px;
    align-items: center;
    gap: 8px;
}

.wc-match-center {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.wc-app-body .wc-logo {
    width: 42px;
    height: 42px;
}

.wc-app-body .wc-team-name {
    max-width: 78px;
    font-size: 10px;
}

.wc-app-body .wc-vs {
    width: auto;
    height: auto;
    font-size: 14px;
}

.wc-app-body .wc-pill {
    min-width: 68px;
    padding: 5px 6px;
    border-radius: 5px;
    font-size: 10px;
}

.wc-app-body .wc-status {
    justify-self: end;
    min-height: 26px;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 9px;
}

.wc-app-body .wc-bottom-nav {
    right: 50%;
    left: auto;
    width: min(calc(100% - 18px), 392px);
    max-width: 392px;
    transform: translateX(50%);
    border-radius: 0 0 14px 14px;
    border-color: rgba(134, 171, 205, 0.18);
    background: rgba(2, 9, 18, 0.96);
    padding: 7px 8px 8px;
}

.wc-app-body .wc-bottom-nav a {
    min-width: 48px;
    min-height: 42px;
    font-size: 9px;
}

.wc-app-body .wc-bottom-nav i {
    font-size: 20px;
}

.wc-app-body .wc-bottom-nav a.active {
    color: #64db2f;
}

@media (max-width: 360px) {
    .wc-app-body .wc-page {
        padding-right: 8px;
        padding-left: 8px;
    }

    .wc-match-main {
        grid-template-columns: 52px 1fr 62px 68px;
        gap: 6px;
    }

    .wc-app-body .wc-stat strong {
        font-size: 15px;
    }
}
