    /* Design System: Bageecha Luxury Nature theme (Forest Green, Gold, Dark Glass) */
    :root {
      --primary-green: #112F24;
      --primary-green-rgb: 17, 47, 36;
      --accent-gold: #C5A880;
      --accent-gold-rgb: 197, 168, 128;
      --accent-light-gold: #DFC5A0;
      --dark-bg: #070C09;
      --dark-card: #0F1A15;
      --dark-surface: #15251E;
      --text-primary: #F5F7F6;
      --text-secondary: #8CA399;
      --accent-glow: rgba(197, 168, 128, 0.25);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      
      --color-pending: #8CA399;
      --color-preparing: #FFB300;
      --color-completed: #60BB46;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--dark-bg);
      background-image: radial-gradient(circle at 10% 20%, rgba(197, 168, 128, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 90% 80%, rgba(17, 47, 36, 0.3) 0%, transparent 50%);
      background-attachment: fixed;
      font-family: 'Outfit', sans-serif;
      color: var(--text-primary);
      min-height: 100vh;
      overflow: hidden;
      display: flex;
    }

    ::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.01);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary-green);
      border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent-gold);
    }

    /* Layout grid */
    .app-container {
      display: grid;
      grid-template-columns: 240px 1fr;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }
    @media (max-width: 900px) {
      .app-container {
        grid-template-columns: 1fr;
      }
      .sidebar {
        display: none !important;
      }
    }

    /* Sidebar Navigation */
    .sidebar {
      background: var(--dark-card);
      border-right: 1px solid rgba(197, 168, 128, 0.15);
      display: flex;
      flex-direction: column;
      padding: 24px 16px;
      z-index: 10;
    }
    .sidebar-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin-bottom: 36px;
      text-align: center;
    }
    .sidebar-logo {
      width: 44px;
      height: 44px;
      filter: drop-shadow(0 0 8px var(--accent-gold));
    }
    .sidebar-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      color: #FFF;
      margin-top: 6px;
    }
    .sidebar-title span {
      color: var(--accent-gold);
    }
    .sidebar-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }
    .menu-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px;
      border-radius: 8px;
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 600;
      font-size: 13.5px;
      cursor: pointer;
      transition: var(--transition-smooth);
      border: 1px solid transparent;
    }
    .menu-item:hover, .menu-item.active {
      color: var(--text-primary);
      background: rgba(197, 168, 128, 0.04);
      border-color: rgba(197, 168, 128, 0.1);
    }
    .menu-item.active {
      background: linear-gradient(135deg, rgba(17,47,36,0.6), rgba(197,168,128,0.1)) !important;
      color: var(--accent-light-gold) !important;
      border-left: 3px solid var(--accent-gold);
      box-shadow: 0 4px 12px rgba(17,47,36,0.2);
    }
    
    .menu-badge {
      background: var(--color-preparing);
      color: #000;
      font-family: 'Orbitron', sans-serif;
      font-size: 9px;
      font-weight: 900;
      padding: 2px 6px;
      border-radius: 10px;
      box-shadow: 0 0 8px var(--color-preparing);
    }

    /* Main Area */
    .main-workspace {
      display: flex;
      flex-direction: column;
      height: 100vh;
      overflow: hidden;
    }
    
    /* Top Bar Status */
    .top-status-bar {
      height: 64px;
      border-bottom: 1px solid rgba(197, 168, 128, 0.1);
      background: rgba(15, 26, 21, 0.8);
      backdrop-filter: blur(15px);
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
    }
    .status-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .status-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .role-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      font-family: 'Orbitron', sans-serif;
      background: rgba(197, 168, 128, 0.08);
      border: 1px solid rgba(197, 168, 128, 0.2);
      border-radius: 4px;
      padding: 4px 10px;
      cursor: pointer;
      user-select: none;
      transition: var(--transition-smooth);
    }
    .role-badge:hover {
      background: rgba(197, 168, 128, 0.15);
      border-color: var(--accent-gold);
    }
    .sync-indicator {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 500;
      color: var(--text-secondary);
    }
    .sync-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-completed);
      box-shadow: 0 0 6px var(--color-completed);
    }

    /* Content Area Scrollable */
    .content-panel {
      flex: 1;
      padding: 24px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* Panel Switching */
    .tab-panel {
      display: none;
      flex-direction: column;
      gap: 24px;
    }
    .tab-panel.active {
      display: flex;
      animation: fade-up 0.4s ease;
    }
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Cards */
    .card {
      background: var(--dark-card);
      border: 1px solid rgba(197, 168, 128, 0.12);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      position: relative;
    }
    .card-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--accent-light-gold);
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Metrics Summary Grid */
    .metrics-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }
    .metric-box {
      background: var(--dark-card);
      border: 1px solid rgba(197, 168, 128, 0.1);
      border-radius: 10px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: var(--transition-smooth);
    }
    .metric-box:hover {
      transform: translateY(-2px);
      border-color: rgba(197, 168, 128, 0.25);
    }
    .metric-icon {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: rgba(197, 168, 128, 0.08);
      border: 1px solid rgba(197, 168, 128, 0.15);
      color: var(--accent-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .metric-info p {
      font-size: 11px;
      color: var(--text-secondary);
      font-weight: 500;
    }
    .metric-info h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 16px;
      font-weight: 700;
      margin-top: 2px;
      color: #fff;
    }

    /* Floor Map Visual Table Canvas */
    .floor-canvas {
      width: 100%;
      height: 320px;
      background: rgba(17, 47, 36, 0.05);
      border: 1px dashed rgba(197, 168, 128, 0.2);
      border-radius: 12px;
      position: relative;
      overflow: hidden;
    }
    .floor-table {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--dark-surface);
      border: 2px solid rgba(197, 168, 128, 0.2);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .floor-table:hover {
      border-color: var(--accent-gold);
      transform: scale(1.05);
    }
    .floor-table.occupied {
      background: rgba(255, 179, 0, 0.08);
      border-color: var(--color-preparing);
    }
    .floor-table.selected {
      border-color: var(--primary-cyan) !important;
      background: rgba(0, 212, 255, 0.12) !important;
      box-shadow: 0 0 20px rgba(0, 212, 255, 0.6) !important;
      animation: selected-glow 1.5s infinite alternate !important;
      transform: scale(1.05);
      z-index: 10;
    }
    @keyframes selected-glow {
      0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
      100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    }
    .active-table-btn {
      border: 2px solid var(--primary-cyan) !important;
      box-shadow: 0 0 10px rgba(0, 212, 255, 0.4) !important;
    }
    .table-number {
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #fff;
    }
    .table-timer {
      font-size: 9px;
      color: var(--color-preparing);
      font-weight: 600;
    }
    .table-covers {
      font-size: 8px;
      color: var(--text-secondary);
    }

    /* Buttons utilities */
    .btn {
      padding: 10px 18px;
      border-radius: 6px;
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 11.5px;
      cursor: pointer;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .btn-gold {
      background: var(--accent-gold);
      color: #070C09;
      border: none;
    }
    .btn-gold:hover {
      background: var(--accent-light-gold);
      box-shadow: 0 0 10px var(--accent-glow);
    }
    .btn-dark {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(197, 168, 128, 0.2);
      color: var(--text-primary);
    }
    .btn-dark:hover {
      background: rgba(197, 168, 128, 0.08);
      border-color: var(--accent-gold);
    }

    /* Forms */
    .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
      margin-bottom: 16px;
    }
    .input-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: left;
    }
    .input-field label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--text-secondary);
      letter-spacing: 0.5px;
    }
    .field-input, .field-select, .field-textarea {
      background: var(--dark-surface);
      border: 1px solid rgba(197, 168, 128, 0.15);
      border-radius: 6px;
      padding: 10px 12px;
      color: #fff;
      font-family: inherit;
      font-size: 13px;
      outline: none;
      transition: var(--transition-smooth);
    }
    .field-input:focus, .field-select:focus, .field-textarea:focus {
      border-color: var(--accent-gold);
      box-shadow: 0 0 8px var(--accent-glow);
    }

    /* Split Dashboard Widgets */
    .split-revenue-widget {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .split-bar {
      height: 20px;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      background: rgba(255,255,255,0.03);
    }
    .split-segment {
      height: 100%;
      transition: var(--transition-smooth);
    }
    .split-legend {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 11.5px;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    /* Tables */
    .table-wrapper {
      overflow-x: auto;
    }
    .table-pos {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 12.5px;
    }
    .table-pos th, .table-pos td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(197, 168, 128, 0.08);
    }
    .table-pos th {
      color: var(--text-secondary);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 10.5px;
      letter-spacing: 0.5px;
    }
    .table-pos tbody tr:hover {
      background: rgba(255, 255, 255, 0.01);
    }

    /* POS Order Panel sliding layout */
    .pos-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 20px;
      height: calc(100vh - 120px);
      overflow: hidden;
    }
    @media (max-width: 1100px) {
      .pos-layout {
        grid-template-columns: 1fr;
      }
      .cart-sidebar {
        display: none; /* In mobile, order is built in full screen or slider */
      }
    }
    .pos-menu-panel {
      display: flex;
      flex-direction: column;
      gap: 16px;
      overflow-y: auto;
      padding-right: 6px;
    }
    .menu-category-tabs {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 12px;
    }
    .menu-item-card {
      background: var(--dark-card);
      border: 1px solid rgba(197, 168, 128, 0.1);
      border-radius: 10px;
      padding: 14px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .menu-item-card:hover {
      border-color: var(--accent-gold);
      box-shadow: 0 4px 12px var(--accent-glow);
    }
    .item-name {
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 4px;
      height: 36px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .item-price {
      font-family: 'Orbitron', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-gold);
    }
    .item-cat-tag {
      font-size: 8.5px;
      background: rgba(255,255,255,0.03);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid var(--card-border);
      display: inline-block;
      margin-top: 6px;
    }

    /* Cart Sidebar panel */
    .cart-sidebar {
      background: var(--dark-card);
      border-left: 1px solid rgba(197, 168, 128, 0.15);
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 12px;
      overflow: hidden;
    }
    .cart-header {
      padding: 16px;
      border-bottom: 1px solid rgba(197, 168, 128, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .cart-items-list {
      flex: 1;
      overflow-y: auto;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .cart-item-row {
      background: rgba(255,255,255,0.01);
      border: 1px solid rgba(197, 168, 128, 0.08);
      border-radius: 8px;
      padding: 10px;
    }
    .cart-item-header {
      display: flex;
      justify-content: space-between;
      font-size: 12.5px;
      font-weight: 600;
    }
    .cart-item-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 8px;
    }
    .qty-btn {
      width: 22px;
      height: 22px;
      border-radius: 4px;
      background: var(--dark-surface);
      border: 1px solid rgba(197, 168, 128, 0.2);
      color: #fff;
      cursor: pointer;
      font-size: 12px;
    }
    .discount-input {
      width: 40px;
      padding: 2px 4px;
      background: var(--dark-surface);
      border: 1px solid var(--card-border);
      border-radius: 4px;
      color: #fff;
      font-size: 10.5px;
      text-align: center;
      outline: none;
    }
    .cart-summary {
      padding: 16px;
      border-top: 1px solid rgba(197, 168, 128, 0.1);
      background: var(--dark-surface);
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 12px;
    }
    
    /* KDS Ticket list styling */
    .kds-queue-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .kds-ticket {
      background: var(--dark-card);
      border: 1px solid rgba(197, 168, 128, 0.15);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .kds-ticket-header {
      padding: 12px 16px;
      background: rgba(197, 168, 128, 0.05);
      border-bottom: 1px solid rgba(197, 168, 128, 0.15);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .kds-ticket-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .kds-ticket-item {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      padding: 6px 0;
      border-bottom: 1px dashed rgba(255,255,255,0.04);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .kds-ticket-item.preparing {
      color: var(--color-preparing);
      animation: pulse-txt 1.5s infinite alternate;
    }
    .kds-ticket-item.completed {
      color: var(--color-completed);
      text-decoration: line-through;
    }
    @keyframes pulse-txt {
      0% { opacity: 0.7; }
      100% { opacity: 1; }
    }
    .kds-ticket-footer {
      padding: 12px 16px;
      border-top: 1px solid rgba(197, 168, 128, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Gantt chart style */
    .gantt-chart-container {
      width: 100%;
      overflow-x: auto;
      background: rgba(17, 47, 36, 0.05);
      border: 1px solid rgba(197, 168, 128, 0.15);
      border-radius: 12px;
      padding: 20px;
    }
    .gantt-svg {
      min-width: 600px;
      width: 100%;
      height: 180px;
    }

    /* Overlay modals */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-card {
      background: var(--dark-card);
      border: 1px solid rgba(197, 168, 128, 0.25);
      border-radius: 16px;
      padding: 24px;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(197, 168, 128, 0.1);
      padding-bottom: 10px;
    }
    .modal-title {
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--accent-gold);
    }
    .modal-close {
      background: none;
      border: none;
      color: var(--text-secondary);
      font-size: 20px;
      cursor: pointer;
    }

    /* Inactivity Lock Screen Overlay */
    .lock-screen-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(17, 47, 36, 0.96); /* Using primary forest green as base tint */
      backdrop-filter: blur(12px);
      z-index: 99999; /* Keep above all modals */
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }
    .lock-screen-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .lock-card {
      background: var(--dark-card);
      border: 1px solid rgba(197, 168, 128, 0.35);
      border-radius: 20px;
      padding: 40px 30px;
      width: 100%;
      max-width: 360px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(197, 168, 128, 0.05);
      animation: lockFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes lockFadeIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .lock-logo {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.4));
      animation: lockPulse 2s infinite alternate;
    }
    @keyframes lockPulse {
      0% { transform: scale(1); }
      100% { transform: scale(1.05); }
    }
    .lock-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--accent-gold);
      margin-bottom: 8px;
      letter-spacing: 2px;
    }
    .lock-desc {
      font-size: 11px;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }
    .lock-pass-input {
      background: rgba(0,0,0,0.3);
      border: 1px solid rgba(197, 168, 128, 0.2);
      color: #fff;
      font-family: 'Courier Prime', monospace;
      font-size: 18px;
      letter-spacing: 4px;
      text-align: center;
      border-radius: 8px;
      padding: 12px;
      width: 100%;
      margin-bottom: 16px;
      transition: all 0.3s;
    }
    .lock-pass-input:focus {
      outline: none;
      border-color: var(--accent-gold);
      box-shadow: 0 0 10px rgba(197,168,128,0.25);
    }

    /* Thermal receipt printer preview box */
    .receipt-roll-wrapper {
      max-height: 70vh;
      overflow-y: auto;
      padding: 10px;
      background: #333;
      border-radius: 6px;
    }
    .thermal-receipt {
      background: #FFF;
      color: #000;
      width: 290px; /* Simulated 58mm roll width */
      margin: 0 auto;
      padding: 24px 14px;
      font-family: 'Courier Prime', monospace;
      font-size: 11.5px;
      line-height: 1.4;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      text-align: left;
    }
    .receipt-line {
      border-top: 1px dashed #000;
      margin: 6px 0;
    }
    .receipt-double-line {
      border-top: 2px dashed #000;
      margin: 6px 0;
    }
    .receipt-align-row {
      display: flex;
      justify-content: space-between;
    }

    /* Notification Alert Toast */
    .toast-container {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .toast {
      background: var(--dark-surface);
      border-left: 4px solid var(--accent-gold);
      border-top: 1px solid rgba(197, 168, 128, 0.15);
      border-right: 1px solid rgba(197, 168, 128, 0.15);
      border-bottom: 1px solid rgba(197, 168, 128, 0.15);
      border-radius: 4px;
      padding: 14px 20px;
      color: #fff;
      font-size: 13px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      gap: 12px;
      transform: translateX(120%);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .toast.show {
      transform: translateX(0);
    }

    /* Helpers */
    .badge {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      display: inline-block;
      font-family: 'Orbitron', sans-serif;
    }
    .badge-gold { background: rgba(197, 168, 128, 0.15); color: var(--accent-gold); border: 1px solid rgba(197, 168, 128, 0.3); }
    .badge-green { background: rgba(96, 187, 70, 0.15); color: var(--color-completed); border: 1px solid rgba(96, 187, 70, 0.3); }
    .badge-orange { background: rgba(255, 179, 0, 0.15); color: var(--color-preparing); border: 1px solid rgba(255, 179, 0, 0.3); }
    .text-right { text-align: right; }
    .bold { font-weight: 700; }
