:root {
    --color-bg-dark: #150306;
    --color-header-from: #7b0213;
    --color-header-to: #3c0108;
    --color-card-bg: rgba(255, 255, 255, 0.94);
    --color-border-soft: rgba(0, 0, 0, 0.08);
    --color-text-main: #1c1c1c;
    --color-text-muted: #666;
    --color-accent: #a30e23;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.18);
    --radius-lg: 18px;
    --transition-fast: 0.18s ease-out;
}

/* БАЗА И ФОН */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text-main);

    background-color: var(--color-bg-dark);
    background-image: url("https://gagauzteatr.md/wp-content/uploads/2021/01/teatr_pattern_10.jpg");
    background-repeat: repeat;
    background-size: 22% auto; /* 3–5 повторов по горизонтали */
    background-attachment: fixed;

    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.45), transparent 55%);
    pointer-events: none;
    z-index: -1;
}

/* LOGIN PAGE */

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 28px;
    padding: 32px 30px 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    color: #f5f5f5;
}

.login-logo {
    text-align: center;
    margin-bottom: 18px;
}

.login-logo img {
    max-width: 220px;
    height: auto;
}

.login-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.login-subtitle {
    text-align: center;
    font-size: 13px;
    color: #bbbbbb;
    margin-bottom: 18px;
}

.login-form .form-group {
    margin-bottom: 14px;
}

.login-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #dddddd;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px rgba(163, 14, 35, 0.35);
    background: rgba(0, 0, 0, 0.65);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, #d11933, #7b0213);
    color: #fff;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
    background: linear-gradient(135deg, #e1223d, #96031a);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.alert {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 14px;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.13);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ffb3b8;
}

.alert-success {
    background: rgba(25, 135, 84, 0.13);
    border: 1px solid rgba(25, 135, 84, 0.5);
    color: #b8f5d2;
}

/* HEADER */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 24px;
    box-sizing: border-box;

    background: linear-gradient(135deg, var(--color-header-from), var(--color-header-to));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.main-header .logo {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-header .logo img {
    height: 96px; /* увеличенный логотип */
    width: auto;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

/* пункты меню без капсул и фонов */

.main-nav a {
    display: inline-block;
    padding: 4px 0;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    background: none;
    border: none;
    letter-spacing: 0.03em;
    transition: color .15s ease;
}

.main-nav a:hover {
    color: #ffcccc;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    white-space: nowrap;
    color: #f7dfe3;
    font-size: 13px;
}

.logout-link {
    color: #ffe0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.12);
    transition:
        background-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.logout-link:hover {
    background: rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* ОСНОВНОЙ КОНТЕНТ */

.main-content {
    padding: 20px 24px 30px;
    max-width: 1240px;
    margin: 0 auto;
    box-sizing: border-box;
}

.main-footer {
    max-width: 1240px;
    margin: 0 auto 16px;
    padding: 0 24px;
    box-sizing: border-box;
    color: #d0d0d0;
    font-size: 13px;
    text-align: right;
}

/* REPERTUAR GRID — 3 карточки в ряд на десктопе */

.repertuar-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Карточка: слева данные, справа маленькая афиша */

.repertuar-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Левая часть — текст и кнопки */

.repertuar-left {
    flex: 1 1 auto;
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Правая часть — компактная афиша */

.repertuar-right {
    flex: 0 0 130px;           /* фиксированная ширина под миниафишу */
    padding: 8px 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.repertuar-poster-small {
    width: 100%;
    max-width: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    background: #111;
}

.repertuar-poster-small img {
    display: block;
    width: 100%;
    height: auto;              /* Сохраняем пропорции */
    object-fit: cover;         /* если вдруг будет больше по высоте */
}

.repertuar-poster-placeholder-small {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 80px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #dddddd;
    background: linear-gradient(135deg, #3a020b, #160106);
}

/* Текстовые блоки */

.repertuar-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.repertuar-meta {
    font-size: 13px;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.repertuar-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    font-size: 12px;
    color: #777;
}

.repertuar-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    margin-top: 6px;
    color: #555;
}

.repertuar-status {
    margin-top: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge-active {
    background: rgba(18, 140, 75, 0.12);
    color: #157347;
    border: 1px solid rgba(18, 140, 75, 0.4);
}

.badge-inactive {
    background: rgba(108, 117, 125, 0.12);
    color: #495057;
    border: 1px solid rgba(108, 117, 125, 0.4);
}

/* Кнопки внизу карточки */

.repertuar-actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.btn-small {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

.repertuar-btn-edit,
.repertuar-btn-show {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    border-radius: 999px;
}

.repertuar-btn-edit {
    background: #e3e3e3;
    color: #222;
}

.repertuar-btn-show {
    background: #a30e23;
    color: #fff;
}

.repertuar-btn-edit svg,
.repertuar-btn-show svg {
    flex-shrink: 0;
}




/* Заголовки и карточки */

h1 {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    margin-top: 4px;
    margin-bottom: 18px;
}

.dashboard-cards {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dashboard-cards .card {
    display: block;
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 16px 18px 18px;
    text-decoration: none;
    color: var(--color-text-main);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border-soft);
    backdrop-filter: blur(8px);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.dashboard-cards .card h2 {
    margin: 0 0 6px;
    font-size: 17px;
}

.dashboard-cards .card p {
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
}

.dashboard-cards .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
}

/* ТАБЛИЦЫ, ФОРМЫ (НА БУДУЩЕЕ ДЛЯ КАРТОЧЕК) */

.table-users,
.table-default {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    overflow: hidden;
}

.table-users th,
.table-users td,
.table-default th,
.table-default td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.table-users th,
.table-default th {
    background: rgba(0, 0, 0, 0.04);
    text-align: left;
    font-weight: 600;
}

.table-users tr:last-child td,
.table-default tr:last-child td {
    border-bottom: none;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="datetime-local"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    box-sizing: border-box;
}

/* адаптивность */

@media (max-width: 1100px) {
    .repertuar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .repertuar-grid {
        grid-template-columns: 1fr;
    }

    .repertuar-card {
        flex-direction: row;
    }

    .repertuar-right {
        flex: 0 0 110px;
    }
}


@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .main-nav ul {
        justify-content: center;
    }

    .user-box {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
    }

    .main-content {
        padding: 16px 14px 24px;
    }

    .login-container {
        margin: 12px;
    }
}

/* HALL / SEATHALL */

.hall-card {
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    padding: 16px 18px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    margin-bottom: 18px;
}

.hall-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hall-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hall-date {
    font-size: 14px;
    color: #777;
}

.hall-title {
    font-size: 18px;
    font-weight: 600;
}

.hall-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.hall-legend {
    font-size: 13px;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.hall-legend-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.seat-pill {
    display: inline-block;
    width: 18px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.15);
}

/* статусы мест */

.seat-free {
    background: #f5f5f5;
}

.seat-reserved {
    background: #ffef9c;
    border-color: #e0c860;
}

.seat-sold {
    background: #d11b1b;
    border-color: #7c0202;
}

/* цены по зонам */

.hall-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.hall-price-item {
    background: #fafafa;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hall-price-label {
    font-weight: 500;
}

.hall-price-value {
    color: #444;
}

/* сцена */

.hall-stage {
    text-align: center;
    padding: 4px 0;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
    border-bottom: 2px solid rgba(0,0,0,0.15);
}

/* прокрутка зала */

.hall-scroll {
    overflow-x: auto;
    padding-bottom: 4px;
}

/* зоны и ряды */

.hall-zone {
    margin-bottom: 12px;
}

.hall-zone-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.hall-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.hall-row-label {
    width: 24px;
    text-align: right;
    font-size: 12px;
    color: #666;
}

.hall-row-seats {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

/* кнопки мест */

.seat-btn {
    min-width: 26px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.18);
    font-size: 11px;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.seat-btn.seat-free {
    background: #f7f7f7;
    color: #333;
}

.seat-btn.seat-free:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.seat-btn.seat-reserved {
    background: #ffef9c;
    color: #5a4a00;
}

.seat-btn.seat-sold {
    background: #d11b1b;
    color: #fff;
}

/* МОДАЛКА БИЛЕТА */

.ticket-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.ticket-modal {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 16px 18px 14px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.ticket-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticket-modal-title {
    font-size: 16px;
    font-weight: 600;
}

.ticket-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.ticket-preview {
    border-radius: 16px;
    border: 1px dashed rgba(0,0,0,0.15);
    padding: 10px 12px 8px;
    margin-bottom: 10px;
    font-size: 13px;
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.ticket-play {
    flex: 1.2;
}

.ticket-meta-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ticket-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}

.ticket-value {
    font-size: 13px;
    font-weight: 500;
}

.ticket-bottom {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ticket-meta-note {
    flex: 2;
}

.ticket-modal-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* адаптивность для зала */

@media (max-width: 900px) {
    .hall-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hall-legend {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .ticket-top {
        flex-direction: column;
    }

    .hall-card {
        padding: 12px 10px 12px;
    }
}

/* ====== БЕЛЫЙ ФОН ДЛЯ СХЕМЫ ====== */

.hall-card {
    background: #ffffff;             /* чисто белый фон */
    border-radius: 18px;
    padding: 20px 20px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    margin-bottom: 22px;
    border: 1px solid rgba(0,0,0,0.06);
}

/* ====== СЦЕНА ====== */

.hall-stage {
    text-align: center;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 10px 0;
    margin: 12px 0 18px 0;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ====== АППАРАТНАЯ ====== */

.hall-back-block {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: #dcdcdc;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.2);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

/* ====== ВЫРАВНИВАНИЕ ЗОН В ЦЕНТР ====== */

.hall-scroll {
    overflow-x: auto;
    padding: 10px 0;
    text-align: center; /* центрируем содержимое */
}

.hall-zone {
    display: inline-block; /* чтобы зоны были по центру */
    text-align: left;      /* но внутренняя структура — слева */
    margin: 0 auto 22px;
}

.hall-row {
    justify-content: center;
}

.hall-row-seats {
    display: inline-flex;
    gap: 4px;
}
/* Верхняя панель выбора спектакля / даты / времени на seathall */

.hall-top-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 14px;
    align-items: flex-end;
}

.hall-top-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.hall-top-item label {
    font-size: 12px;
    color: #555;
}

.hall-top-item select,
.hall-top-item input[type="date"],
.hall-top-item input[type="time"] {
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 13px;
    min-width: 160px;
}

.hall-top-item-button .btn-small {
    padding-inline: 14px;
}
/* LIVE LAYOUT */

.live-layout {
    display: flex;
    gap: 18px;
    align-items: stretch;
}

/* 2/3 — слева, 1/3 — справа */
.live-left {
    flex: 2 1 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-right {
    flex: 1 1 0;
}

/* Карточка афиши и данных */

.live-poster-card {
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    padding: 14px 14px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-poster-wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.live-poster-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.live-poster-placeholder {
    width: 100%;
    min-height: 140px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #dddddd;
    background: linear-gradient(135deg, #3a020b, #160106);
}

/* Информация справа */

.live-info-block {
    font-size: 13px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.live-info-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.live-info-row {
    font-size: 13px;
}

/* Живые часы */

.live-clock-block {
    margin-top: 4px;
    margin-bottom: 2px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #111;
    color: #f5f5f5;
    text-align: center;
}

.live-clock-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2px;
}

.live-clock-value {
    font-size: 20px;
    font-weight: 600;
}

.live-clock-date {
    font-size: 11px;
    opacity: 0.8;
}

/* Статистика под залом */

.live-stats-strip {
    margin-top: 6px;
    background: rgba(255,255,255,0.98);
    border-radius: 14px;
    padding: 8px 10px 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    font-size: 13px;
}

.live-stat-item {
    display: flex;
    flex-direction: column;
}

.live-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}

.live-stat-value {
    font-size: 14px;
    font-weight: 600;
}

.live-stat-bar-wrapper {
    flex: 1 1 100%;
    margin-top: 4px;
}

.live-stat-bar-bg {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #eee;
    overflow: hidden;
}

.live-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #157347, #a30e23);
}

/* Адаптив */

@media (max-width: 1100px) {
    .live-layout {
        flex-direction: column;
    }

    .live-left,
    .live-right {
        flex: 1 1 100%;
    }
}

.seat-entered {
  background: #2fb35a !important;
  color: #fff !important;
  border-color: rgba(0,0,0,0.15) !important;
}
.seat-pill.seat-entered {
  background: #2fb35a !important;
}
