/* ==========================================================================
   JCasta Proom Portal - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Layout - Top Banner / Header
   ========================================================================== */

.top-banner {
    background: url('/images/TheTapRoomTopBar.png') center center / cover no-repeat, #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: 46px;
}

.top-banner-title {
    color: #fff;
    text-decoration: none;
}

.top-banner-title:hover {
    color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

/* ==========================================================================
   Layout - Sidebar
   ========================================================================== */

.sidebar {
    background-color: #f8f9fa;
    min-height: calc(100vh - 46px);
    width: 220px;
    position: fixed;
    top: 46px;
    left: 0;
    border-right: 1px solid #dee2e6;
    z-index: 1020;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar .nav {
    flex: 1;
    overflow-y: auto;
}

.sidebar-footer {
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;
}

.sidebar-collapse-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 11px 20px;
    text-align: left;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-collapse-btn:hover {
    background: #e9ecef;
    color: #333;
}

.sidebar-expand-tab {
    display: none;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-left: none;
    border-radius: 0 6px 6px 0;
    padding: 14px 5px;
    cursor: pointer;
    z-index: 1025;
    color: #6c757d;
    line-height: 1;
}
.sidebar-expand-tab:hover {
    background: #e9ecef;
    color: #333;
}

body.sidebar-hidden .sidebar {
    transform: translateX(-220px);
}
body.sidebar-hidden .main-content {
    margin-left: 0;
}
body.sidebar-hidden .sidebar-expand-tab {
    display: block;
}

.sidebar .nav-link {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #dee2e6;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
}

.sidebar .nav-link.active {
    background-color: #e9ecef;
    font-weight: 600;
}

.sidebar .nav-link i {
    margin-right: 10px;
}

.nav-section-toggle {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #dee2e6;
    color: #333;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
}

.nav-section-toggle:hover {
    background-color: #e9ecef;
}

.nav-chevron {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-section-toggle[aria-expanded="true"] .nav-chevron {
    transform: rotate(90deg);
}

.nav-sublink {
    padding-left: 44px !important;
    font-size: 0.9rem;
    background-color: #f1f3f5;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1015;
}

/* ==========================================================================
   Layout - Main Content Area
   ========================================================================== */

.main-content {
    margin-left: 220px;
    margin-top: 46px;
    padding: 30px;
    transition: margin-left 0.3s ease;
}

.main-content .table-responsive {
    overflow-x: clip;
}

.main-content .table-responsive.scrollable {
    overflow-x: auto;
}

.main-content .table-responsive.scrollable thead th {
    position: static;
}

.main-content thead th {
    position: sticky;
    top: 46px;
    z-index: 3;
}

/* ==========================================================================
   Header - User Dropdown
   ========================================================================== */

.user-dropdown {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-dropdown:hover {
    color: #ddd;
}

.user-dropdown .dropdown-toggle::after {
    margin-left: 8px;
}

.dropdown-menu {
    min-width: 150px;
}

/* ==========================================================================
   Header - Search Box
   ========================================================================== */

.search-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 15px;
    color: white;
    width: 250px;
    transition: all 0.3s ease;
}

.search-box:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    color: white;
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form {
    display: flex;
    align-items: center;
}

.search-form button {
    background: none;
    border: none;
    color: white;
    margin-left: -35px;
    cursor: pointer;
    padding: 5px;
}

.search-form button:hover {
    color: #ddd;
}

/* ==========================================================================
   Dashboard - News List
   ========================================================================== */

.news-item {
    border-left: 3px solid #dee2e6;
    padding-left: 15px;
    margin-bottom: 15px;
    transition: border-color 0.2s;
}

.news-item:hover {
    border-left-color: #0d6efd;
}

.news-item a {
    text-decoration: none;
    color: inherit;
}

.news-item a:hover h6 {
    color: #0d6efd;
}

.news-unread {
    color: #ffc107;
}

.news-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.success-message {
    animation: fadeOut 5s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* ==========================================================================
   Search Results
   ========================================================================== */

.search-result-item {
    border-left: 3px solid #dee2e6;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.2s;
}

.search-result-item:hover {
    border-left-color: #0d6efd;
    background: #f8f9fa;
}

.search-result-item a {
    text-decoration: none;
    color: inherit;
}

.search-result-item a:hover h6 {
    color: #0d6efd;
}

.result-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    color: #495057;
    font-weight: 500;
}

.result-type-badge.news {
    background-color: #cfe2ff;
    color: #084298;
}

.result-type-badge.beer {
    background-color: #f8d7a4;
    color: #7c4a03;
}

.search-result-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-image-placeholder {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

.result-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.search-summary {
    color: #6c757d;
    font-size: 0.95rem;
}

.result-preview {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   News Form - Image Upload
   ========================================================================== */

.image-preview {
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: none;
}

.image-preview-container {
    position: relative;
    display: inline-block;
}

.remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
    display: none;
}

/* ==========================================================================
   News View - Single Story
   ========================================================================== */

.news-body {
    white-space: pre-wrap;
    line-height: 1.8;
}

.news-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.news-image:hover {
    transform: scale(1.02);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.image-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* ==========================================================================
   Whereabouts - Status Colors
   ========================================================================== */

.whereabouts-office {
    background-color: #d4edda !important;
    color: #155724;
}

.whereabouts-wfh {
    background-color: #cce5ff !important;
    color: #004085;
}

.whereabouts-holiday {
    background-color: #fff3cd !important;
    color: #856404;
}

.whereabouts-customer {
    background-color: #e2d5f1 !important;
    color: #5a3d7a;
}

.whereabouts-empty {
    background-color: #f8f9fa !important;
    color: #6c757d;
}

.whereabouts-select {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
}

.whereabouts-select option[value="Office"] {
    background-color: #d4edda;
}

.whereabouts-select option[value="WFH"] {
    background-color: #cce5ff;
}

.whereabouts-select option[value="Holiday"] {
    background-color: #fff3cd;
}

.whereabouts-select option[value="Customer"] {
    background-color: #e2d5f1;
}

.table-whereabouts td {
    padding: 0.5rem;
    vertical-align: middle;
}

/* Whereabouts edit page */
.wa-edit-table td {
    padding: 0.5rem;
    vertical-align: top;
    min-width: 130px;
}

.wa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.wa-quick-btn {
    font-size: 0.7rem;
    padding: 2px 6px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.wa-btn-office {
    background-color: #d4edda;
    color: #155724;
    border-color: #b1dfbb;
}
.wa-btn-office:hover { background-color: #b1dfbb; }

.wa-btn-wfh {
    background-color: #cce5ff;
    color: #004085;
    border-color: #9fccf3;
}
.wa-btn-wfh:hover { background-color: #9fccf3; }

.wa-btn-holiday {
    background-color: #fff3cd;
    color: #856404;
    border-color: #fde89e;
}
.wa-btn-holiday:hover { background-color: #fde89e; }

.wa-btn-customer {
    background-color: #e2d5f1;
    color: #5a3d7a;
    border-color: #c9b4e8;
}
.wa-btn-customer:hover { background-color: #c9b4e8; }

.wa-input {
    font-size: 0.8rem;
}

/* ==========================================================================
   Login Page
   ========================================================================== */

body.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('/images/TheTapRoomBar.png') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.login-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-weight: 300;
}

.btn-login {
    background-color: #ffffff;
    color: #1e3c72;
    border: none;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #f8f9fa;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.btn-login i {
    margin-right: 10px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 36px 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 380px;
    width: 100%;
}

.glass-card--test {
    background: rgba(160, 0, 0, 0.82);
    border-color: rgba(255, 120, 120, 0.4);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.login-divider span {
    padding: 0 16px;
}

.login-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 1rem;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    box-shadow: none;
}

.login-error {
    background: rgba(220, 53, 69, 0.35);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* ==========================================================================
   Inventory - Beer Grid
   ========================================================================== */

.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.beer-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: row;
}

.beer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.beer-image-container {
    width: 120px;
    min-height: 150px;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beer-image-placeholder {
    color: #adb5bd;
    font-size: 3rem;
}

.beer-details {
    padding: 15px;
    flex-grow: 1;
}

.beer-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.beer-brewery {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.beer-info {
    font-size: 0.85rem;
    color: #6c757d;
}

.beer-country {
    display: inline-block;
}

.beer-meta .badge {
    font-size: 0.75rem;
}

.beer-description {
    font-size: 0.85rem;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.beer-price {
    font-size: 1.1rem;
}

/* ==========================================================================
   Merlin - Inbound Calendar
   ========================================================================== */

.cal-table {
    table-layout: fixed;
}

.cal-table td {
    vertical-align: top;
    padding: 0;
    min-height: 80px;
}

.cal-cell-outside {
    opacity: 0.55;
}

.cal-date-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    margin-bottom: 6px;
    background-color: #c8c8c8;
}

.cal-date-num-weekend {
    font-size: 0.6rem;
    padding: 3px 4px;
}

.cal-cell-today .cal-date-num {
    background-color: #2d7a4f;
    color: #fff;
}

.cal-day-total {
    font-size: 0.6rem;
    color: #6c757d;
    padding: 2px 6px 4px;
}

.cal-summary {
    background: #f1f3f5;
    border-left: 3px solid #6c757d;
    border-radius: 3px;
    padding: 4px 6px;
    margin: 0 6px 4px;
    font-size: 0.75rem;
    line-height: 1.3;
}

.cal-summary-overdue {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.cal-summary-today {
    border-left-color: #198754;
    background: #f0fff4;
}

.cal-summary-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 3px;
}

.cal-summary-supplier {
    display: block;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.cal-empties-badge {
    color: #dc3545;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.5;
}

.cal-summary-supplier:hover {
    text-decoration: underline;
}

.cal-summary-detail {
    color: #6c757d;
    font-size: 0.7rem;
}

/* ==========================================================================
   Merlin - Inbound Table
   ========================================================================== */

.inbound-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.inbound-table code {
    font-size: 0.85rem;
    color: #495057;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.open {
        display: block;
    }

    .main-content {
        margin-left: 0 !important;
        padding: 20px 15px;
    }

    .sidebar-collapse-btn,
    .sidebar-expand-tab {
        display: none !important;
    }

    .main-content .table-responsive {
        overflow-x: auto;
    }

    .search-box {
        width: 150px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .glass-card {
        padding: 40px 30px;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .search-box {
        width: 120px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Warehouse — Set Pick Bin (mobile scan page)
   ========================================================================== */

.scan-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.scan-alert {
    width: 100%;
    max-width: 480px;
    margin-bottom: 16px;
}

.scan-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.scan-icon-wrap {
    text-align: center;
    margin-bottom: 12px;
}

.scan-hero-icon {
    font-size: 3.5rem;
    color: #0d6efd;
}

.scan-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.scan-subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.scan-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scan-input {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 14px 16px;
    border: 2px solid #0d6efd;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
}

.scan-input:focus {
    outline: none;
    border-color: #0a58ca;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.2);
}

.btn-scan-submit {
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-scan-cancel {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 11px;
    border-radius: 10px;
    text-align: center;
    margin-top: 10px;
}

.scan-part-info {
    text-align: center;
}

.scan-part-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    margin-bottom: 10px;
}

.scan-part-img {
    max-height: 110px;
    max-width: 100%;
    object-fit: contain;
}

.scan-part-img-placeholder {
    font-size: 4.5rem;
    color: #c8a000;
    opacity: 0.85;
}

.scan-part-number {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #212529;
}

.scan-part-desc {
    font-size: 1rem;
    color: #6c757d;
    margin: 4px 0 12px;
}

.scan-bin-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.scan-bin-badge {
    font-size: 1.1rem;
    font-weight: 700;
    background: #e8f0ff;
    color: #0d6efd;
    border: 1px solid #b6ccfe;
    border-radius: 8px;
    padding: 4px 14px;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Not Set Up Overlay
   ========================================================================== */

.nav-test-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #dc3545;
    color: #fff;
    border-bottom: 1px solid #b02a37;
    font-weight: 600;
    font-size: 1rem;
    pointer-events: none;
}

.not-setup-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Drivers — Delivery Journey
   ========================================================================== */

.journey-stops {
    max-width: 640px;
}

.journey-stop {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
}

.journey-stop-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.journey-stop-num.done    { background: #198754; color: #fff; }
.journey-stop-num.current { background: #0d6efd; color: #fff; }
.journey-stop-num.pending { background: #e9ecef; color: #6c757d; }

.journey-stop-done    { background: #f8f9fa; }
.journey-stop-current { background: #e8f0ff; border: 2px solid #0d6efd; }
.journey-stop-pending { opacity: 0.5; }

.journey-stop-body { flex: 1; }

.journey-stop-times { font-size: 0.85rem; }

.journey-connector {
    width: 2px;
    height: 16px;
    background: #dee2e6;
    margin-left: 30px;
}

.journey-stop-thumb {
    max-width: 80px;
    max-height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

/* ==========================================================================
   Kiosk Layout
   ========================================================================== */

.kiosk-body {
    background: #111;
    color: #fff;
}

.kiosk-content {
    margin-top: 46px;
    padding: 0;
}

.kiosk-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
}

.kiosk-banner-side {
    display: flex;
    align-items: center;
}

.kiosk-banner-right {
    justify-content: flex-end;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.kiosk-banner-centre {
    white-space: nowrap;
    text-align: center;
}

.kiosk-depot-pill {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 3px 18px;
    border-radius: 20px;
}

.kiosk-countdown {
    position: fixed;
    bottom: 10px;
    right: 14px;
    z-index: 9999;
    color: #000;
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    pointer-events: none;
}
