.lstvbc-wrap,
.lstvbc-wrap * {
    box-sizing: border-box;
}

.lstvbc-wrap {
    width: 100%;
    max-width: 100%;
    color: #fff;
}

.lstvbc-wrap a,
.lstvbc-wrap button,
.lstvbc-wrap img {
    max-width: 100%;
}

.lstvbc-empty {
    padding: 12px 0;
}

.lstvbc-board {
    color: #fff;
}

.lstvbc-board-shell {
    border: 1px solid rgba(83, 102, 146, 0.26);
    border-radius: 14px;
    background: linear-gradient(180deg, #071121 0%, #04101c 100%);
    box-shadow: 0 18px 44px rgba(2, 12, 24, 0.45);
    overflow: hidden;
}

.lstvbc-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lstvbc-board-title-wrap,
.lstvbc-board-controls,
.lstvbc-board-date-tabs,
.lstvbc-board-league,
.lstvbc-board-match,
.lstvbc-board-team,
.lstvbc-board-blv,
.lstvbc-board-footer {
    display: flex;
    align-items: center;
}

.lstvbc-board-title-wrap {
    gap: 12px;
}

.lstvbc-board-title-icon {
    font-size: 18px;
}

.lstvbc-board-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.lstvbc-board-controls {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lstvbc-board-date-tabs {
    gap: 10px;
    flex-wrap: wrap;
}

.lstvbc-board-chip,
.lstvbc-board-select,
.lstvbc-board-more {
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.lstvbc-board-chip {
    padding: 0 18px;
    cursor: pointer;
}

.lstvbc-board-chip.is-active {
    background: linear-gradient(180deg, #2d8c12 0%, #1f5d0c 100%);
    border-color: rgba(107, 214, 70, 0.3);
}

.lstvbc-board-chip.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.lstvbc-board-select-wrap {
    min-width: 190px;
}

.lstvbc-board-select {
    width: 100%;
    padding: 0 16px;
    cursor: pointer;
}

.lstvbc-board-table {
    padding: 0 10px 8px;
}

.lstvbc-board-row {
    display: grid;
    grid-template-columns: 100px 190px minmax(240px, 1fr) 150px 120px 68px;
    gap: 14px;
    align-items: center;
    padding: 14px 8px;
}

.lstvbc-board-row--head {
    margin: 10px 0 4px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.lstvbc-board-row--item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lstvbc-board-cell {
    min-width: 0;
}

.lstvbc-board-time-main {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.lstvbc-board-time-sub,
.lstvbc-board-league-sub {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}

.lstvbc-board-league {
    gap: 12px;
}

.lstvbc-board-league-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.lstvbc-board-league-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lstvbc-board-league-name,
.lstvbc-board-team-name,
.lstvbc-board-blv-name {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lstvbc-board-match {
    gap: 14px;
    justify-content: center;
}

.lstvbc-board-team {
    gap: 10px;
    min-width: 0;
}

.lstvbc-board-team-logo,
.lstvbc-board-blv-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.lstvbc-board-vs {
    font-size: 18px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.72);
}

.lstvbc-board-blv {
    gap: 10px;
}

.lstvbc-board-blv-avatar--placeholder {
    display: inline-block;
}

.lstvbc-board-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.lstvbc-board-status.is-live {
    background: linear-gradient(180deg, #b11313 0%, #8a1111 100%);
    color: #fff;
}

.lstvbc-board-status.is-upcoming {
    background: rgba(95, 98, 178, 0.18);
    color: #c7d2ff;
}

.lstvbc-board-play {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(84, 255, 38, 0.32);
    background: rgba(84, 255, 38, 0.08);
    text-decoration: none;
}

.lstvbc-board-play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #54ff26;
    margin-left: 3px;
}

.lstvbc-board-footer {
    justify-content: center;
    padding: 16px 16px 22px;
}

.lstvbc-board-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    text-decoration: none;
    text-transform: uppercase;
}

.lstvbc-hot-list {
    color: #fff;
}

.lstvbc-hot-shell {
    border: 1px solid rgba(74, 95, 136, 0.28);
    border-radius: 18px;
    background: linear-gradient(180deg, #07111f 0%, #040b14 100%);
    box-shadow: 0 18px 38px rgba(2, 11, 24, 0.42);
    padding: 18px;
}

.lstvbc-hot-head,
.lstvbc-hot-match,
.lstvbc-hot-logos,
.lstvbc-hot-meta {
    display: flex;
    align-items: center;
}

.lstvbc-hot-head {
    gap: 12px;
    margin-bottom: 14px;
}

.lstvbc-hot-icon {
    font-size: 24px;
    line-height: 1;
}

.lstvbc-hot-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lstvbc-hot-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lstvbc-hot-row {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 21, 35, 0.96) 0%, rgba(8, 16, 28, 0.96) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.lstvbc-hot-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-decoration: none;
}

.lstvbc-hot-match {
    position: relative;
    z-index: 2;
    gap: 16px;
    padding: 16px 18px;
}

.lstvbc-hot-logos {
    gap: 12px;
    flex: 0 0 auto;
}

.lstvbc-hot-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lstvbc-hot-vs {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.lstvbc-hot-content {
    min-width: 0;
}

.lstvbc-hot-name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lstvbc-hot-league {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lstvbc-hot-meta {
    gap: 10px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
}

.lstvbc-hot-time {
    color: #f3f5f8;
}

.lstvbc-hot-meta-dot {
    color: rgba(255, 255, 255, 0.5);
}

.lstvbc-hot-status {
    color: rgba(255, 255, 255, 0.82);
}

.lstvbc-hot-status.is-live {
    color: #ff4a4a;
}

.lstvbc-tabs,
.lstvbc-date-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.lstvbc-tab,
.lstvbc-date-tab {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 14, 24, 0.4);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
}

.lstvbc-tab {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.lstvbc-date-tab {
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    min-width: 86px;
    align-items: flex-start;
}

.lstvbc-tab.is-active {
    background: linear-gradient(180deg, #231abd 0%, #0a1d89 100%);
    border-color: transparent;
}

.lstvbc-date-tab.is-active {
    border-color: #fe9a01;
    box-shadow: 0 0 0 1px rgba(254, 154, 1, 0.25);
}

.lstvbc-date-tab.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.lstvbc-wrap .lstvbc-tab:hover,
.lstvbc-wrap .lstvbc-date-tab:hover,
.lstvbc-wrap .lstvbc-action-btn:hover,
.lstvbc-wrap .lstvbc-card:hover,
.lstvbc-wrap .lstvbc-schedule-row:hover {
    transform: translateY(-1px);
}

.lstvbc-wrap .lstvbc-tab:focus,
.lstvbc-wrap .lstvbc-date-tab:focus,
.lstvbc-wrap .lstvbc-card-link:focus,
.lstvbc-wrap .lstvbc-schedule-link:focus {
    outline: none;
}

.lstvbc-wrap .lstvbc-tab:focus-visible,
.lstvbc-wrap .lstvbc-date-tab:focus-visible,
.lstvbc-wrap .lstvbc-card-link:focus-visible,
.lstvbc-wrap .lstvbc-schedule-link:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 204, 58, 0.9);
}

.lstvbc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lstvbc-card,
.lstvbc-schedule-row {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(120% 120% at 50% 0%, #101d3a 0%, #060b1b 55%, #05070f 100%);
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lstvbc-card {
    border-radius: 16px;
    padding: 14px 14px 12px;
    min-height: 130px;
}

.lstvbc-card.is-hot,
.lstvbc-schedule-row.is-hot {
    border-color: #fe9a01;
}

.lstvbc-item.is-hidden,
.lstvbc-card.is-hidden {
    display: none;
}

.lstvbc-card-link,
.lstvbc-schedule-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-decoration: none;
}

.lstvbc-sport-icon,
.lstvbc-head,
.lstvbc-body,
.lstvbc-foot,
.lstvbc-schedule-left,
.lstvbc-schedule-mid,
.lstvbc-schedule-right {
    position: relative;
    z-index: 2;
}

.lstvbc-sport-icon {
    top: 10px;
    left: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lstvbc-sport-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.lstvbc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    opacity: 0.95;
}

.lstvbc-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff3b30;
}

.lstvbc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.lstvbc-time-label,
.lstvbc-league,
.lstvbc-date-tab-top {
    color: rgba(255, 255, 255, 0.9);
}

.lstvbc-league {
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lstvbc-date-tab-top {
    font-weight: 800;
}

.lstvbc-date-tab-bottom {
    font-size: 16px;
    letter-spacing: 0.6px;
}

.lstvbc-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.lstvbc-team {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.lstvbc-away {
    grid-template-columns: 1fr 44px;
    text-align: right;
}

.lstvbc-team-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    object-fit: contain;
}

.lstvbc-team-name,
.lstvbc-schedule-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lstvbc-team-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.lstvbc-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}

.lstvbc-minute,
.lstvbc-schedule-minute {
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.lstvbc-score,
.lstvbc-schedule-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
}

.lstvbc-score {
    background: linear-gradient(180deg, #231abd 0%, #0a1d89 100%);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1;
    min-width: 96px;
}

.lstvbc-score-sep {
    opacity: 0.9;
}

.lstvbc-foot {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.lstvbc-blv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}

.lstvbc-blv-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.lstvbc-blv-avatar--placeholder {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
}

.lstvbc-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lstvbc-schedule-row {
    border-radius: 14px;
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    gap: 14px;
    padding: 14px;
}

.lstvbc-schedule-league {
    font-weight: 800;
    font-size: 12px;
    opacity: 0.85;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lstvbc-schedule-datetime {
    display: block;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.lstvbc-countdown {
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.22);
    padding: 10px 12px;
    max-width: 220px;
}

.lstvbc-countdown.is-live-now {
    border-color: rgba(255, 71, 119, 0.45);
    background: linear-gradient(135deg, rgba(255, 71, 119, 0.18) 0%, rgba(94, 17, 53, 0.3) 100%);
    box-shadow: 0 12px 30px rgba(255, 71, 119, 0.14);
}

.lstvbc-countdown-label {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.6px;
    color: #00d1ff;
    margin-bottom: 6px;
}

.lstvbc-countdown.is-live-now .lstvbc-countdown-label {
    color: #ff7ea3;
}

.lstvbc-countdown-time {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.8px;
    color: #00e5ff;
}

.lstvbc-countdown.is-live-now .lstvbc-countdown-time {
    color: #ffffff;
    letter-spacing: 1.4px;
}

.lstvbc-schedule-teams {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.lstvbc-schedule-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.lstvbc-schedule-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
}

.lstvbc-schedule-name {
    font-weight: 800;
    font-size: 16px;
}

.lstvbc-schedule-vs {
    font-weight: 800;
    opacity: 0.65;
}

.lstvbc-schedule-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.lstvbc-pill,
.lstvbc-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}

.lstvbc-pill {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
}

.lstvbc-schedule-score {
    font-size: 18px;
}

.lstvbc-schedule-minute {
    min-height: 16px;
    font-size: 12px;
    opacity: 0.9;
}

.lstvbc-action-btn {
    text-decoration: none;
    padding: 8px 14px;
    background: #fecc3a;
    color: #111;
    font-size: 12px;
}

.lstvbc-popup-open {
    overflow: hidden;
}

.lstvbc-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lstvbc-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lstvbc-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(4px);
}

.lstvbc-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 18, 26, 0.98) 0%, rgba(9, 12, 20, 0.98) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    padding: 28px 28px 24px;
    text-align: center;
    color: #fff;
}

.lstvbc-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.lstvbc-popup-spinner {
    width: 46px;
    height: 46px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ff4377;
    animation: lstvbc-spin 1s linear infinite;
}

.lstvbc-popup-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}

.lstvbc-popup-description {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.lstvbc-popup-countdown {
    position: relative;
    width: 126px;
    height: 126px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lstvbc-popup-progress {
    width: 126px;
    height: 126px;
    transform: rotate(-90deg);
}

.lstvbc-popup-progress-track,
.lstvbc-popup-progress-bar {
    fill: none;
    stroke-width: 8;
}

.lstvbc-popup-progress-track {
    stroke: rgba(255, 255, 255, 0.08);
}

.lstvbc-popup-progress-bar {
    stroke: #ff4377;
    stroke-linecap: round;
    stroke-dasharray: 301.5929;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.lstvbc-popup-count {
    position: absolute;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.lstvbc-popup-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

@keyframes lstvbc-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .lstvbc-board-head {
        flex-direction: column;
        align-items: stretch;
    }

    .lstvbc-board-controls {
        justify-content: flex-start;
    }

    .lstvbc-board-row,
    .lstvbc-board-row--head {
        grid-template-columns: 92px 1fr 1fr 140px 120px 60px;
    }

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

    .lstvbc-schedule-row {
        grid-template-columns: 1fr;
    }

    .lstvbc-schedule-right {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .lstvbc-hot-shell {
        padding: 14px;
    }

    .lstvbc-hot-title {
        font-size: 18px;
    }

    .lstvbc-hot-match {
        gap: 12px;
        padding: 14px;
    }

    .lstvbc-hot-logo {
        width: 36px;
        height: 36px;
    }

    .lstvbc-hot-name {
        font-size: 16px;
        white-space: normal;
    }

    .lstvbc-hot-meta {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .lstvbc-board-shell {
        border-radius: 12px;
    }

    .lstvbc-board-title {
        font-size: 22px;
    }

    .lstvbc-board-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .lstvbc-board-date-tabs {
        width: 100%;
    }

    .lstvbc-board-chip,
    .lstvbc-board-select,
    .lstvbc-board-more {
        width: 100%;
    }

    .lstvbc-board-table {
        padding: 0 8px 8px;
    }

    .lstvbc-board-row--head {
        display: none;
    }

    .lstvbc-board-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 10px;
    }

    .lstvbc-board-cell--action {
        justify-self: flex-start;
    }

    .lstvbc-board-match {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .lstvbc-board-team {
        width: 100%;
    }

    .lstvbc-board-vs {
        font-size: 15px;
    }

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

    .lstvbc-body {
        grid-template-columns: 1fr;
    }

    .lstvbc-team,
    .lstvbc-away {
        grid-template-columns: 44px 1fr;
        text-align: left;
    }

    .lstvbc-center {
        min-width: 0;
    }

    .lstvbc-schedule-teams {
        flex-direction: column;
        align-items: flex-start;
    }

    .lstvbc-popup {
        padding: 16px;
    }

    .lstvbc-popup-dialog {
        border-radius: 24px;
        padding: 24px 20px 20px;
    }
}
