/* ── Sidebar ── */
#sidebar {
    width: 85px;
    min-width: 85px;
    background: #a495ff !important;
    height: calc(100vh - 85px - 16px);
    position: fixed;
    top: 85px;
    left: 1px;
    bottom: 8px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px 16px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(100, 70, 210, 0.20), inset 0 1px 0 rgba(255,255,255,0.14);
    transition: transform 0.3s ease;
    color: #fff !important;
    overflow: hidden;
}

@media (max-width: 768px) {
    .navbar { padding: 0 16px 0 16px; height: 60px; }
    .brand-sub { display: none; }
    .layout-content { margin-left: 0; padding-top: 60px; }
    #sidebar { left: -100px; }
    #sidebar.show-sidebar { left: 8px; }
    #sidebar {
        transform: translateX(-100px);
        position: fixed;
        z-index: 1000;
        top: 0;
        height: 100vh;
        border-radius: 0 14px 14px 0;
    }
    #sidebar.show-sidebar { transform: translateX(0); }
    .main-new-session-container { height: calc(115vh); }
    .profile-main-container { margin-top: 3rem; }
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    gap: 2px;
    overflow-y: auto;
    scrollbar-width: none;
}
.sidebar-nav::-webkit-scrollbar { display: none; }

#sidebar > ul,
#sidebar .nav.flex-column { width: 100%; padding: 0; }
#sidebar .nav-item { width: 100%; margin-bottom: 0.1rem !important; }

/* sidebar-item */
.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px 6px 10px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-weight: 500;
    gap: 5px;
    transition: background 0.17s, color 0.17s, box-shadow 0.17s;
    border-radius: 12px;
    letter-spacing: 0.01em;
}
.sidebar-item svg { flex-shrink: 0; width: 24px; height: 24px; stroke-width: 1.8; }
.sidebar-item span { font-size: 0.62rem; font-weight: 600; text-align: center; line-height: 1.2; }
.sidebar-item:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}
.sidebar-item.active {
    color: #fff;
}

/* profile trigger */
.sidebar-profile-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 6px;
    border-radius: 12px;
    cursor: pointer;
    color: rgba(255,255,255,0.78);
    font-size: 0.62rem;
    font-weight: 600;
    transition: background 0.17s, color 0.17s;
    width: 100%;
}
.sidebar-profile-trigger:hover { background: rgba(255,255,255,0.16); color: #fff; }
.sidebar-profile-trigger::after { display: none; }

#sidebar .bots-toggle,
#sidebar .bots-dropdown,
#sidebar .clinics-toggle,
#sidebar .clinics-dropdown,
#sidebar ul ul { display: none !important; }
#sidebar .bots-section { flex-direction: column; width: 100%; }
#sidebar .bots-section .bots-main-link { width: 100% !important; }

/* ── Bot sub-nav section ── */
.bot-subnav-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.14);
}

.bot-subnav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px 4px 6px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(255,255,255,0.65);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.17s, color 0.17s;
    user-select: none;
    gap: 4px;
    width: 100%;
    text-align: center;
}
.bot-subnav-toggle:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.bot-subnav-chevron { display: none; }

.bot-name-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 6px;
    margin: 2px 0 4px;
    background: rgba(255,255,255,0.11);
    border-radius: 9px;
    color: rgba(255,255,255,0.7);
    font-size: 0.52rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    gap: 3px;
}
.bot-name-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65px;
    color: rgba(255,255,255,0.92);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
}

.bot-subnav-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    transition: opacity 0.2s;
}
.bot-subnav-items.collapsed { display: none; }

.bot-subnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px 7px;
    border-radius: 10px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 500;
    transition: background 0.17s, color 0.17s, box-shadow 0.17s;
    text-align: center;
    width: 100%;
}
.bot-subnav-item i { font-size: 0.95rem; }
.bot-subnav-item:hover { background: rgba(255,255,255,0.16); color: #fff; }
.bot-subnav-item.active { color: #fff; }

/* ── Sidebar bottom (profile) ── */
.sidebar-bottom {
    padding: 12px 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.14);
    width: 100%;
}

.sidebar-profile-menu {
    background: #a495ff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 12px 32px rgba(60, 44, 170, 0.40);
    min-width: 180px;
    position: fixed !important;
    left: 100px !important;
    bottom: 20px !important;
    top: auto !important;
    transform: none !important;
}
.sidebar-profile-item {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.15s;
}
.sidebar-profile-item i { font-size: 1rem; opacity: 0.85; }
.sidebar-profile-item:hover { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.sidebar-logout-item { color: #ffcfcf !important; }
.sidebar-logout-item:hover { background: rgba(255,80,80,0.18) !important; }
.sidebar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2.5px solid rgba(255,255,255,0.55);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.10);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sidebar-avatar:hover {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.22);
}

/* ── Top navbar — fixed full width, brand aligns to sidebar centre ── */
.navbar {
    background: #fff;
    padding: 0 40px 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    height: 80px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    box-shadow: none;
}

.brand-wordmark { display: flex; align-items: center; text-decoration: none; }
.brand-logo { font-size: calc(1.81rem + 1px); font-weight: 700; color: #827bff; letter-spacing: 0.5px; white-space: nowrap; margin-left: 4px; -webkit-text-stroke: 0.6px #827bff; }
.brand-logo span, .brand-in { color: #27cdcb; -webkit-text-stroke: 0.6px #27cdcb; }
.brand-sub { color: #7fe9e7; font-weight: 400; font-size: 19px; margin-left: 8px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.02em; }

.layout-content {
    background: #fff;
    margin-left: 92px;
    padding-top: 80px;
    min-height: 100vh;
}

.page-content-wrapper {
    padding: 4px 16px 24px 6px;
    min-height: calc(100vh - 85px);
}

.page-content-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 0 1px rgba(164, 149, 255, 0.15), 0 4px 24px rgba(164, 149, 255, 0.25), 0 0 60px rgba(164, 149, 255, 0.12);
    padding: 28px;
    height: fit-content;
}

/* ── Colours ── */
.text-dark-blue { color: #2c3e50; }
.bg-dark-blue { background-color: #2c3e50 !important; color: white !important; }

.btn-dark-blue {
    background-color: #a495ff;
    border-color: #a495ff;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-dark-blue:hover { background-color: #8b78f5; border-color: #8b78f5; color: #fff; box-shadow: 0 4px 12px rgba(139, 120, 245, 0.35); }

.btn-dark-blue-outline { background-color: unset; color: #4b3fa0; border: 1.5px #c4b8f8 solid; }
.btn-dark-blue-outline:hover { background-color: #f5f3ff; color: #4b3fa0; }

/* ── Typography ── */
.text-dark-gray { color: #343a40; font-weight: 600; }
.text-muted-gray { color: #a0a4a8; }
.fw-semibold { font-weight: 500; color: #495057; }
.page-title { font-size: 1.5rem; font-weight: 600; color: #343a40; }

/* ── Global nav / layout ── */
.bg-light { background-color: #f8f9fa !important; }
.profile-main-container { margin-top: 0; }
.profile-container { display: flex; align-items: center; }
.profile-image { border: 2px solid #6c757d; }
.profile-img { border: 2px solid #ced4da; }

/* ── Dropdown ── */
.dropdown-menu { min-width: 150px; border-radius: 8px; box-shadow: 0px 4px 8px rgba(0,0,0,0.1); }
.dropdown-item { font-size: 0.9rem; padding: 8px 16px; }
.dropdown-item:hover { background-color: #e9ecef; }

/* ── Sidebar toggle (mobile) ── */
#sidebarToggle { color: #495057; border-color: #ced4da; transition: all 0.3s; }
#sidebarToggle:hover { background-color: #e2e6ea; color: #343a40; }

/* ── Form controls ── */
.form-label { font-weight: 500; color: #5d6d7e; }

.form-control {
    border-radius: 5px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus { border-color: #2c3e50; box-shadow: 0 0 8px rgba(44,62,80,0.2); }

.form-select {
    text-align: center;
    border-radius: 5px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-select:focus { border-color: #4a90e2; box-shadow: 0 0 8px rgba(74,144,226,0.2); }

#next-to-microphone { font-weight: 600; border-radius: 5px; }

/* ── Buttons ── */
.btn-accent { background-color: #4a90e2; border: none; font-weight: 600; border-radius: 5px; transition: background 0.3s; color: #fff; }
.btn-accent:hover { background-color: #3a78c5; }
.btn-outline-primary { font-weight: 500; transition: background-color 0.3s, color 0.3s; }
.btn-outline-primary:hover { background-color: #0d6efd; color: #fff; }

.nav-link-settings { color: #2c3e50 !important; }
.nav-link-settings.active { color: white !important; background-color: #2c3e50 !important; }

/* ── Cards ── */
.card { border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.card-header { background-color: #2c3e50; color: #ecf0f1; font-size: 1rem; text-transform: uppercase; text-align: center; padding: 0.75rem; }
.card-body p { margin-bottom: 8px; font-size: 0.95rem; color: #34495e; }
.card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.card h5 i { font-size: 1.1rem; }

/* ── Tables ── */
.table { border: 1px solid #dee2e6; border-radius: 8px; }
.table-hover tbody tr:hover { background-color: #f8f9fa; }

/* ── Badges ── */
.badge { font-size: 0.9rem; padding: 0.5em 0.75em; border-radius: 12px; }

/* ── Alerts ── */
.alert-info { background-color: #f0f8ff; border: 1px solid #cce5ff; color: #31708f; border-radius: 8px; }
.text-danger { color: #dc3545 !important; }

/* ── Personal info form ── */
#personal-info-form { background-color: #f7f9fc; box-shadow: 0 4px 8px rgba(0,0,0,0.05) !important; }
#personal-info-form h2 { font-weight: 600; }

/* ── Microphone selection ── */
#microphone-selection { background-color: #f4f5f7; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
#microphone-selection h2 { color: #2d2d2d; font-weight: 600; }
.icon-container { background-color: #16a085; color: white; }
.icon-container i { color: #a0a4a8; }
.form-control-file { text-align: center; color: #4a90e2; margin-top: 5px; }

/* ── Recording session ── */
#recording-session-view { background-color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.sound-effects-container i { color: #a0a4a8; }
.timer { font-size: 1.2em; color: #495057; font-weight: 600; }
#stop-recording-btn, #pause-recording-btn { font-weight: 600; border-radius: 5px; }
#live-preview { background-color: #f8f9fa; border: 1px solid #ddd; border-radius: 6px; }
#live-preview h4 { font-size: 1.1rem; margin-bottom: 10px; }
#speech-text { color: #495057; font-style: italic; }

/* ── Status indicators ── */
.status-indicator { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; }
.status-indicator .green-dot {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    background-color: #28a745; box-shadow: 0 0 5px 2px rgba(40,167,69,0.5); animation: pulse 1.5s infinite;
}
.status-indicator .red-dot {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    background-color: #dc3545; box-shadow: 0 0 5px 2px rgba(220,53,69,0.5); animation: pulse-red 1.5s infinite;
}
.status-text { font-size: 0.9rem; font-weight: 500; text-transform: capitalize; }

.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 5px 2px rgba(0,0,0,0.1); }
.dot-success { background-color: #28a745; box-shadow: 0 0 5px 2px rgba(40,167,69,0.3); }
.dot-warning { background-color: #ffc107; box-shadow: 0 0 5px 2px rgba(255,193,7,0.3); }
.dot-danger { background-color: #dc3545; box-shadow: 0 0 5px 2px rgba(220,53,69,0.3); }
.dot-secondary { background-color: #6c757d; box-shadow: 0 0 5px 2px rgba(108,117,125,0.3); }

/* ── Animations ── */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px 2px rgba(40,167,69,0.5); }
    50%       { box-shadow: 0 0 10px 4px rgba(40,167,69,0.3); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Spinner ── */
.spinner {
    width: 20px; height: 20px;
    border: 2px solid #f3f3f3; border-top: 2px solid #2c3e50;
    border-radius: 50%; animation: spin 0.6s linear infinite; margin: 10px auto;
}
.spinner-overlay {
    position: fixed; inset: 0; background: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center; z-index: 9999;
}

/* ── Pagination ── */
.pagination-container .pagination { margin: 0; }
.pagination-container .page-item.active .page-link { background-color: #a495ff; border-color: #a495ff; color: white; }
.pagination-container .page-link { color: #a495ff; border-radius: 4px; margin: 0 2px; }
.pagination-container .page-link:hover { background-color: #8f7df0; color: #fff; }

/* ── Dashboard overview ── */
.display-6-dashboard { font-size: 1.5rem; margin-top: 4px; font-weight: bold; }
.card.text-center h6 { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.card.text-center:hover { transform: translateY(-2px); transition: transform 0.2s ease-in-out; }

.dashboard-overview .card {
    border-radius: 8px;
    text-align: left;
    background-color: #f9fafc;
    border: 1px solid #e1e5eb;
    transition: transform 0.2s ease-in-out;
}
.dashboard-overview .card:hover { transform: translateY(-5px); }
.dashboard-overview .card h6 { font-size: 0.95rem; font-weight: 500; color: #2c3e50; margin: 0; }
.dashboard-overview .card p { font-size: 1.2rem; font-weight: 700; color: #34495e; margin: 0; }
.dashboard-overview .card i { font-size: 1.1rem; }
.dashboard-overview h6 { font-size: 1rem; font-weight: 500; margin-bottom: 0; }
.dashboard-overview .display-6 { font-size: 1.5rem; }
.dashboard-overview .text-primary { color: #007bff !important; }
.dashboard-overview .text-success { color: #28a745 !important; }
.dashboard-overview .text-danger  { color: #dc3545 !important; }
.dashboard-overview .text-warning { color: #ffc107 !important; }
.dashboard-overview .text-info    { color: #17a2b8 !important; }

/* ── Progress / log lists ── */
.progress-list, .log-list { overflow-y: auto; padding-right: 5px; }
.progress-list::-webkit-scrollbar, .log-list::-webkit-scrollbar { width: 5px; }
.progress-list::-webkit-scrollbar-thumb, .log-list::-webkit-scrollbar-thumb { background-color: #ced4da; border-radius: 10px; }
.progress-list div, .log-list div { margin-bottom: 5px; }
.progress-list h6, .log-list h6 { font-size: 0.95rem; font-weight: 600; }
.progress-list p, .log-list p { font-size: 0.85rem; margin: 0; }
.progress-list .badge, .log-list .badge { font-size: 0.75rem; padding: 5px 8px; border-radius: 5px; }

/* ── Clinics overview ── */
.clinics-overview .clinic-card {
    border-radius: 8px; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fdfdfd; border: 1px solid #e9ecef; text-align: left;
}
.clinics-overview .clinic-card:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.clinics-overview .clinic-card h6 { font-size: 0.9rem; color: #2c3e50; margin-bottom: 2px; }
.clinics-overview .clinic-status { font-size: 0.75rem; padding: 2px 6px; border-radius: 5px; }
.clinics-overview .clinic-stats { font-size: 0.85rem; color: #6c757d; }
.clinics-overview .clinic-stats i { font-size: 0.9rem; }
.clinics-overview .btn { font-size: 0.8rem; padding: 4px 6px; width: 33%; text-align: center; }
.clinics-overview .btn i { font-size: 0.85rem; }
.clinics-overview .badge.bg-success { background-color: #28a745 !important; }
.clinics-overview .badge.bg-danger  { background-color: #dc3545 !important; }
.clinics-overview .badge.bg-warning { background-color: #ffc107 !important; }

/* ── Modal ── */
.modal-header { background-color: #2c3e50; color: #fff; }
.modal-title { font-weight: bold; }
#ticketModal .modal-dialog { max-height: calc(100vh - 2rem); margin: 1rem auto; }
#ticketModal .modal-content { max-height: 100%; display: flex; flex-direction: column; }
#ticketModal .modal-body { overflow-y: auto; }

/* Darker backdrop for all modals system-wide */
.modal-backdrop { opacity: 0 !important; }
.modal-backdrop.show { opacity: 0.88 !important; background-color: #000; }

/* ── Chat ── */
.chat-box { max-height: 300px; overflow-y: auto; background: #f8f9fa; padding: 10px; border-radius: 8px; }
.chat-container { display: flex; flex-direction: column; gap: 10px; max-height: 400px; overflow-y: auto; padding: 10px; }
.chat-message { display: flex; align-items: center; max-width: 75%; }
.bot-message { align-self: flex-start; }
.user-message { align-self: flex-end; text-align: right; }
.chat-bubble { padding: 10px 15px; border-radius: 10px; display: inline-block; max-width: 100%; }
.bot-message .chat-bubble { background-color: #f1f1f1; border-radius: 10px 10px 10px 2px; }
.user-message .chat-bubble { background-color: #007bff; color: white; border-radius: 10px 10px 2px 10px; }

/* ── Misc ── */
.info-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 1rem; }
.list-group-item { border: none; background: rgba(0,0,0,0.03); border-radius: 5px; }

.top-up { background-color: #2c3e50 !important; padding: 5px 15px; border-radius: 5px; border: 1px solid white; color: white !important; }
.top-up span { color: rgb(154,255,154) !important; margin-left: 5px; }

.d-flex.flex-wrap { gap: 1rem; }
.d-flex.flex-wrap a { text-decoration: none; }
.d-flex.flex-wrap i { transition: transform 0.2s ease-in-out; }
.d-flex.flex-wrap a:hover i { transform: scale(1.3); }

/* ── Destination card ── */
.destination-card {
    background: linear-gradient(135deg, #2c3e50, rgb(85,109,133));
    border-radius: 12px; padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white; position: relative; overflow: hidden;
}
.destination-card:hover { transform: translateY(-5px); box-shadow: 0px 10px 20px rgba(0,0,0,0.2); }
.destination-header { display: flex; justify-content: space-between; font-weight: bold; font-size: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.3); }
.destination-title { font-size: 18px; font-weight: bold; }
.toggle-fields { background: transparent; border: none; color: white; }
.toggle-fields:hover { transform: rotate(180deg); transition: transform 0.3s ease; }
.destination-body { padding-top: 10px; display: none; }
.field-item { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.field-value { background: rgba(255,255,255,0.2); padding: 5px 10px; border-radius: 5px; font-weight: bold; color: white !important; display: block; }
.destination-footer { margin-top: 10px; }
.copy-btn { background: rgba(255,255,255,0.3); color: white; border: none; transition: background 0.3s ease; }
.copy-btn:hover { background: rgba(255,255,255,0.5); }

/* ── Report issue button ── */
.report-issue-container { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 1050; transition: all 0.3s ease-in-out; }
.report-issue-button {
    background-color: #dc3545; color: #fff; width: 50px; height: 50px;
    border-radius: 30px 0 0 30px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: all 0.3s ease-in-out; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.report-issue-button i { margin-left: 120px; font-size: 1.5rem; transition: all 0.3s ease-in-out; }
.report-issue-text { white-space: nowrap; margin-left: 10px; opacity: 0; transition: all 0.3s ease-in-out; font-size: 0.9rem; font-weight: bold; }
.report-issue-container:hover .report-issue-button { width: 200px; border-radius: 30px 0 0 30px; }
.report-issue-container:hover .report-issue-button i { margin-left: 10px; }
.report-issue-container:hover .report-issue-text { opacity: 1; }

/* ── Deleted stamp ── */
.deleted-stamp { position: relative; }
.deleted-stamp::after {
    content: "DELETED"; font-size: 32px; font-weight: 700;
    color: rgba(220,53,69,0.5); position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotate(-20deg);
    pointer-events: none; letter-spacing: 4px;
    border: 2px solid rgba(220,53,69,0.5); padding: 8px 18px; border-radius: 4px;
}

/* ── Production warning ── */
.production-warning {
    position: fixed; top: 10px; left: 50%; transform: translateX(-50%);
    background: rgba(255,0,0,0.8); color: white; padding: 10px 20px;
    font-size: 16px; font-weight: bold; border-radius: 5px; z-index: 9999;
}
