/* ================== ПЕРЕМЕННЫЕ ================== */

:root {
    --bg-body: #020617;
    --bg-panel-left: #020617;
    --bg-panel-right: #020617;
    --border-strong: rgba(30, 64, 175, 0.55);
    --border-soft: rgba(148, 163, 184, 0.4);
    --blue: #3b82f6;
    --blue-soft: rgba(59, 130, 246, 0.18);
    --green: #22c55e;
    --yellow: #f59e0b;
    --pink: #ec4899;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-strong: 0 22px 50px rgba(15, 23, 42, 0.96);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.85);
    --transition-fast: 0.15s ease-out;
    --transition: 0.22s ease-out;
}

/* ================== БАЗА + СТАТИЧНАЯ СТРАНИЦА ================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden; /* страница не скроллится */
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 55%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.2), transparent 55%), var(--bg-body);
    color: var(--text-main);
}

/* ================== ЛЕЙАУТ ЧАТА ================== */

.chat-container {
    display: flex;
    height: 100vh; /* фикс по высоте окна */
    overflow: hidden;
}

/* левая колонка: диалог */
.client-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: linear-gradient(180deg, #020617 0%, #020617 65%, #020617 100%);
    border-right: 1px solid var(--border-strong);
}

/* правая колонка: панель оператора */
.operator-section {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.18), transparent 55%), #020617;
}

/* ================== ШАПКИ СЛЕВА/СПРАВА ================== */

.section-header {
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    height: 56px; /* одинаковая высота для выравнивания */
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.97));
    backdrop-filter: blur(18px);
    z-index: 5;
}

.client-section .section-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-logo {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.7), rgba(30, 64, 175, 0.8));
}

.section-header span {
    font-size: 14px;
    font-weight: 600;
}

.operator-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
}

.operator-info {
    opacity: 0.82;
}

.sidebar-link {
    font-size: 12px;
    color: var(--blue);
    text-decoration: none;
}

    .sidebar-link:hover {
        text-decoration: underline;
    }

/* ================== ЛЕНТА СООБЩЕНИЙ ================== */

.messages-container {
    flex: 1;
    padding: 18px 24px 22px;
    overflow-y: auto; /* скролл только здесь */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* базовый вид пузыря */
.message {
    max-width: 72%;
    border-radius: 20px;
    padding: 9px 12px 7px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.9);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.99));
    display: flex;
    flex-direction: column;
}

/* по умолчанию слева */
.message {
    align-self: flex-start;
}

/* клиент — слева */
.message-user {
    align-self: flex-start;
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.78);
}

/* агент — справа */
.message-agent {
    align-self: flex-end;
    border-color: rgba(16, 185, 129, 0.75);
    box-shadow: 0 12px 26px rgba(16, 185, 129, 0.85);
}

/* шапка сообщения */
.message-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2px;
}

.message-author {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.95);
}

.message-user .message-author {
    color: #bfdbfe;
}

.message-agent .message-author {
    color: #bbf7d0;
}

.message-time {
    font-size: 11px;
    color: rgba(148, 163, 184, 0.9);
}

.message-text {
    font-size: 14px;
    color: #e5e7eb;
}

/* ================== БЛОК МАКРОСОВ СПРАВА ================== */

.macro-block {
    flex-shrink: 0;
    padding: 14px 24px 10px;
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
}

.macro-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.macro-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(226, 232, 240, 0.92);
}

.macro-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.macro-toggle {
    margin-left: auto;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 14px;
}

.macro-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .macro-body.collapsed {
        display: none;
    }

.macro-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.macro-tool-btn {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    cursor: pointer;
    font-size: 13px;
}

.macro-preview {
    width: 100%;
    min-height: 70px;
    border-radius: 10px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    font-size: 13px;
    padding: 8px 10px;
    resize: vertical;
}

/* ================== ПАНЕЛЬ ВВОДА СПРАВА ================== */

.input-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 24px 18px;
    background: radial-gradient(circle at bottom right, rgba(8, 47, 73, 0.9), #020617);
    box-shadow: 0 -18px 40px rgba(15, 23, 42, 1);
}

.operator-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* сообщение клиенту + внутрянка — в одной колонке, друг под другом */
.message-comment-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.panel-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.message-column textarea,
.comment-column textarea {
    width: 100%;
    min-height: 110px;
    border-radius: 14px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    font-size: 13px;
    padding: 10px 12px;
    resize: vertical;
}

    .message-column textarea:focus,
    .comment-column textarea:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.75);
    }

/* ================== КНОПКИ СТАТУСОВ ================== */

.status-buttons-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.status-btn {
    flex: 1;
    min-width: 90px;
    border-radius: 999px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 10px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
    color: #020617;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.85);
}

.status-deferred {
    background: var(--yellow);
}

.status-waiting {
    background: var(--blue);
    color: #f9fafb;
}

.status-in_progress {
    background: var(--green);
}

.status-closed {
    background: var(--pink);
}

.status-btn.active {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 1);
}

.status-current {
    font-size: 11px;
    color: var(--text-muted);
}

/* ================== КНОПКА "ОТПРАВИТЬ КЛИЕНТУ" ================== */

.send-row {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.send-main-btn {
    border-radius: 999px;
    border: none;
    padding: 9px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    color: #f9fafb;
    background: linear-gradient(115deg, #0ea5e9, #22c55e);
    box-shadow: 0 18px 40px rgba(56, 189, 248, 0.9);
    transition: var(--transition);
}

    .send-main-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 24px 55px rgba(56, 189, 248, 1);
    }

    .send-main-btn:active {
        transform: translateY(0);
    }

/* ================== ЛОГИН ================== */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-box {
    width: 100%;
    max-width: 420px;
    padding: 32px 32px 26px;
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.99));
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: var(--shadow-strong);
}

.login-title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 22px;
    color: #f9fafb;
    letter-spacing: 0.08em;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    font-size: 14px;
    padding: 10px 12px;
}

    .form-group input:focus {
        outline: none;
        border-color: var(--blue);
        box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.75);
    }

/* чекбокс */
.checkbox-group {
    margin: 10px 0 4px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

    .checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

/* кнопка входа */
.btn-login,
.btn-primary {
    width: 100%;
    margin-top: 10px;
    border-radius: 999px;
    border: none;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    color: #f9fafb;
    background: linear-gradient(120deg, #0ea5e9, #6366f1);
    box-shadow: 0 14px 36px rgba(59, 130, 246, 0.95);
    transition: var(--transition);
}

    .btn-login:hover,
    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 48px rgba(59, 130, 246, 1);
    }

    .btn-login:active,
    .btn-primary:active {
        transform: translateY(0);
    }

/* сообщение об ошибке */
.error-message,
.auth-message--error {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.95);
    color: #f9fafb;
    font-size: 13px;
}

/* ================== ПРОЧЕЕ ================== */

.loading {
    padding: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* скроллбар у чата */
.messages-container::-webkit-scrollbar {
    width: 8px;
}

.messages-container::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 999px;
}

/* ================== АДАПТИВ ДЛЯ ЧАТА/ЛОГИНА ================== */

@media (max-width: 992px) {
    .chat-container {
        flex-direction: column;
    }

    .client-section,
    .operator-section {
        flex: none;
        min-height: 50vh;
    }

    .message {
        max-width: 86%;
    }
}

@media (max-width: 540px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        height: auto;
    }

    .login-box {
        padding: 24px 20px 20px;
        border-radius: 16px;
    }

    .login-title {
        font-size: 26px;
    }
}

/* ================== WELCOME ЛЕЙАУТ (ОСНОВНОЕ) ================== */

.welcome-layout {
    display: flex;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 55%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.2), transparent 55%), var(--bg-body);
}

/* Левая колонка с маленькими кнопками */
.sidebar-buttons {
    width: 64px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--border-soft);
    background: #020617;
    box-shadow: 12px 0 40px rgba(15, 23, 42, 1);
}

.sidebar-btn {
    width: 38px;
    height: 38px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.5);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: #e5e7eb;
}

    .sidebar-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 1);
        border-color: rgba(129, 140, 248, 0.8);
    }

    .sidebar-btn svg,
    .sidebar-btn img,
    .small-icon {
        width: 18px;
        height: 18px;
    }

/* если совсем не нужна — спрячем кнопку выбора линии */
#lineStatusBtn {
    display: none;
}

.sidebar-version {
    margin-top: auto;
    font-size: 11px;
    opacity: 0.5;
    color: var(--text-muted);
}

/* Правая часть с карточкой */

.welcome-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 48px;
}

.welcome-card {
    width: 100%;
    max-width: 720px;
    padding: 24px 28px 26px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 1));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(30, 64, 175, 0.8);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.welcome-card-top {
    display: flex;
    justify-content: flex-start;
}

/* Индикатор статуса */

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    background: #22c55e;
}

.status-indicator.offline .status-dot {
    background: #ef4444;
}

.status-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Текст и кнопка */

.welcome-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.welcome-subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

.start-work-btn {
    margin-top: 10px;
    border: none;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    color: #f9fafb;
    background: radial-gradient(circle at top left, #4f46e5, #3b82f6);
    box-shadow: 0 18px 45px rgba(59, 130, 246, 0.95);
    transition: var(--transition);
}

    .start-work-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 26px 60px rgba(59, 130, 246, 1);
    }

    .start-work-btn:active {
        transform: translateY(0);
    }

/* ================== АДАПТИВ ДЛЯ WELCOME ================== */

@media (max-width: 900px) {
    .welcome-layout {
        flex-direction: column;
    }

    .sidebar-buttons {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 1);
    }

    .sidebar-version {
        margin-top: 0;
        margin-left: auto;
    }

    .welcome-main {
        padding: 24px 16px;
    }

    .welcome-card {
        border-radius: 20px;
        padding: 20px 18px 22px;
    }

    .welcome-title {
        font-size: 26px;
    }
}


/* ====== ТИКЕТЫ АГЕНТА ====== */

.tickets-page {
    padding: 32px 48px;
    color: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.tickets-title-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tickets-title {
    font-size: 24px;
    font-weight: 600;
    color: #f9fafb;
    margin: 0;
}

.tickets-count {
    font-size: 14px;
    color: #9ca3af;
}

.tickets-filter-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.7);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.filter-label {
    font-size: 13px;
    color: #9ca3af;
}

.filter-select {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    padding: 4px 12px;
    font-size: 13px;
    outline: none;
}

    .filter-select:focus {
        border-color: rgba(56, 189, 248, 0.9);
        box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    }

.filter-apply-btn {
    border: none;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
    color: #f9fafb;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.45);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}

    .filter-apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 26px rgba(34, 197, 94, 0.7);
        filter: brightness(1.05);
    }

/* Ошибка */
.tickets-error {
    margin-top: 8px;
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(127, 29, 29, 0.7);
    border: 1px solid rgba(248, 113, 113, 0.9);
    color: #fee2e2;
    font-size: 14px;
}

/* Пустое состояние */
.tickets-empty {
    margin-top: 80px;
    text-align: center;
    color: #9ca3af;
}

.tickets-empty-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.tickets-empty-subtitle {
    font-size: 14px;
    color: #6b7280;
}

/* Сетка карточек */
.tickets-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

/* Карточка тикета */
.ticket-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.17), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
    text-decoration: none;
    color: #e5e7eb;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

    .ticket-card:hover {
        transform: translateY(-2px);
        border-color: rgba(96, 165, 250, 0.95);
        box-shadow: 0 0 36px rgba(56, 189, 248, 0.6);
    }

/* Верх карточки */
.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-id {
    font-size: 15px;
    font-weight: 600;
}

/* Статус */
.ticket-status-pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
}

/* раскраска статусов */
.status-pill-new {
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.7);
    color: #bfdbfe;
}

.status-pill-progress {
    border-color: rgba(34, 197, 94, 0.85);
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.6);
    color: #bbf7d0;
}

.status-pill-waiting {
    border-color: rgba(234, 179, 8, 0.9);
    box-shadow: 0 0 14px rgba(234, 179, 8, 0.6);
    color: #fef9c3;
}

.status-pill-deferred {
    border-color: rgba(56, 189, 248, 0.9);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
    color: #cffafe;
}

.status-pill-closed {
    border-color: rgba(148, 163, 184, 1);
    box-shadow: 0 0 10px rgba(75, 85, 99, 0.7);
    color: #e5e7eb;
}

.status-pill-default {
    border-color: rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
}

/* Тело карточки */
.ticket-card-body {
    margin-top: 8px;
    border-top: 1px solid rgba(30, 64, 175, 0.6);
    border-bottom: 1px solid rgba(30, 64, 175, 0.6);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
}

.ticket-label {
    color: #9ca3af;
}

.ticket-value {
    color: #e5e7eb;
    font-weight: 500;
}

/* Футер карточки */
.ticket-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.ticket-footer-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
}

.ticket-footer-label {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticket-footer-value {
    color: #e5e7eb;
    font-weight: 500;
}
