/* ===== TaniKu - CSS Tema Pertanian ===== */
:root {
  --primary: #2d7a2d;
  --primary-dark: #1a5c1a;
  --primary-light: #4caf50;
  --secondary: #8B4513;
  --accent: #FF8C00;
  --bg: #f0f7f0;
  --card-bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: #d4e8d4;
  --sidebar-w: 260px;
  --shadow: 0 2px 12px rgba(45,122,45,0.1);
  --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: var(--bg); color: var(--text); }

/* ===== AUTH ===== */
.auth-body { background: linear-gradient(135deg, #1a5c1a 0%, #2d7a2d 40%, #8B4513 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.auth-container { display: flex; gap: 2rem; align-items: center; padding: 2rem; max-width: 900px; width: 100%; }
.auth-card { background: white; border-radius: var(--radius); padding: 2.5rem; width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.logo-icon-large { font-size: 3rem; }
.auth-logo h1 { font-size: 2rem; color: var(--primary); margin: 0.5rem 0 0.25rem; }
.auth-logo p { color: var(--text-muted); font-size: 0.9rem; }
.auth-form .form-group { margin-bottom: 1.2rem; }
.auth-form label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--text); font-size: 0.9rem; }
.auth-form input, .auth-form select { width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; transition: border-color 0.2s; }
.auth-form input:focus, .auth-form select:focus { outline: none; border-color: var(--primary); }
.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.auth-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }

/* Farm Illustration */
.auth-illustration { color: white; text-align: center; padding: 2rem; }
.farm-scene { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem; backdrop-filter: blur(10px); }
.sun { font-size: 3rem; animation: spin 20s linear infinite; display: inline-block; }
.cloud { font-size: 1.5rem; animation: float 3s ease-in-out infinite; display: inline-block; margin: 0.5rem; }
.c2 { animation-delay: 1.5s; }
.field { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; font-size: 2rem; margin: 1rem 0; animation: sway 2s ease-in-out infinite; }
.farm-tagline { color: rgba(255,255,255,0.9); font-style: italic; margin-top: 1rem; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes sway { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* ===== LAYOUT ===== */
.app-layout { display: flex; min-height: 100vh; }
.main-content { flex: 1; margin-left: var(--sidebar-w); display: flex; flex-direction: column; }
.content-area { padding: 1.5rem; flex: 1; }

/* ===== SIDEBAR ===== */
.sidebar { width: var(--sidebar-w); background: linear-gradient(180deg, #1a5c1a 0%, #2d7a2d 60%, #3d6b20 100%); color: white; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 100; transition: transform 0.3s; }
.sidebar-header { padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { font-size: 1.8rem; }
.logo-text { font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.sidebar-toggle { background: none; border: none; color: white; cursor: pointer; font-size: 1.2rem; }
.sidebar-user { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 0.75rem; }
.user-avatar i { font-size: 2.5rem; opacity: 0.9; }
.user-name { display: block; font-weight: 600; font-size: 0.95rem; }
.user-role { font-size: 0.75rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-nav { padding: 1rem 0; }
.nav-section { margin-bottom: 0.5rem; }
.nav-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); padding: 0.5rem 1.5rem; text-transform: uppercase; }
.nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.5rem; color: rgba(255,255,255,0.85); text-decoration: none; transition: all 0.2s; border-left: 3px solid transparent; }
.nav-item:hover, .nav-item.active { background: rgba(255,255,255,0.15); color: white; border-left-color: #a5d6a7; }
.nav-item i { width: 20px; text-align: center; }
.nav-logout { color: rgba(255,180,180,0.85); margin-top: 1rem; }
.nav-logout:hover { background: rgba(255,0,0,0.15); color: #ff9999; }

/* ===== TOPBAR ===== */
.topbar { background: white; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-bottom: 2px solid var(--border); }
.topbar h1 { font-size: 1.3rem; color: var(--primary-dark); }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-date { color: var(--text-muted); font-size: 0.85rem; }
.topbar-user { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 600; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: var(--primary); cursor: pointer; }

/* ===== ALERTS ===== */
.alert { padding: 0.85rem 1.2rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-danger { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }
.alert-warning { background: #fff8e1; color: #e65100; border-left: 4px solid #ff9800; }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #2196f3; }

/* ===== STATS CARDS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: white; border-radius: var(--radius); padding: 1.25rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow); border-top: 4px solid; transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-3px); }
.stat-card.green { border-top-color: #4caf50; }
.stat-card.brown { border-top-color: #8B4513; }
.stat-card.orange { border-top-color: #FF8C00; }
.stat-card.blue { border-top-color: #1565c0; }
.stat-card.yellow { border-top-color: #f9a825; }
.stat-card.teal { border-top-color: #00897b; }
.stat-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.stat-card.green .stat-icon { background: #e8f5e9; color: #2e7d32; }
.stat-card.brown .stat-icon { background: #fbe9e7; color: #8B4513; }
.stat-card.orange .stat-icon { background: #fff3e0; color: #e65100; }
.stat-card.blue .stat-icon { background: #e3f2fd; color: #1565c0; }
.stat-card.yellow .stat-icon { background: #fffde7; color: #f57f17; }
.stat-card.teal .stat-icon { background: #e0f2f1; color: #00695c; }
.stat-value { display: block; font-size: 1.4rem; font-weight: 700; color: var(--text); line-height: 1; }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ===== DASHBOARD GRID ===== */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.full-width { grid-column: 1 / -1; }

/* ===== CARD ===== */
.card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.card-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: #f8fff8; }
.card-header h3 { font-size: 1rem; color: var(--primary-dark); display: flex; align-items: center; gap: 0.5rem; }
.card-body { padding: 1.25rem; }

/* ===== TABLE ===== */
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th { background: #f0f7f0; color: var(--primary-dark); padding: 0.75rem 1rem; text-align: left; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: #f9fdf9; }

/* ===== BADGES ===== */
.badge { display: inline-block; padding: 0.25rem 0.6rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: #e0e0e0; color: #424242; }
.badge-success, .badge-delivered, .badge-paid { background: #e8f5e9; color: #2e7d32; }
.badge-danger, .badge-cancelled { background: #ffebee; color: #c62828; }
.badge-warning, .badge-pending, .badge-unpaid { background: #fff8e1; color: #e65100; }
.badge-green { background: #c8e6c9; color: #1b5e20; }
.badge-confirmed, .badge-processing { background: #e3f2fd; color: #1565c0; }
.badge-shipped { background: #f3e5f5; color: #6a1b9a; }
.badge-refunded { background: #fce4ec; color: #880e4f; }
.badge-role-admin { background: #fce4ec; color: #880e4f; }
.badge-role-petani { background: #e8f5e9; color: #2e7d32; }
.badge-role-pembeli { background: #e3f2fd; color: #1565c0; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--primary); color: white; border: none; padding: 0.65rem 1.25rem; border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-full { width: 100%; justify-content: center; padding: 0.85rem; font-size: 1rem; }
.btn-secondary { background: #e0e0e0; color: var(--text); border: none; padding: 0.65rem 1.25rem; border-radius: 8px; cursor: pointer; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-green { background: var(--primary-light); color: white; border: none; padding: 0.65rem 1.25rem; border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-danger { background: #c62828; color: white; border: none; padding: 0.65rem 1.25rem; border-radius: 8px; cursor: pointer; font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
.btn-danger:hover { background: #b71c1c; }
.btn-danger.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.82rem; }
.btn-icon { background: none; border: 1px solid var(--border); padding: 0.4rem 0.6rem; border-radius: 6px; cursor: pointer; color: var(--primary); font-size: 0.85rem; transition: all 0.2s; text-decoration: none; display: inline-flex; }
.btn-icon:hover { background: var(--bg); }
.btn-icon.btn-danger { color: #c62828; border-color: #ffcdd2; }
.btn-icon.btn-danger:hover { background: #ffebee; }
.btn-icon.btn-warning { color: #e65100; border-color: #ffe0b2; }
.btn-icon.btn-success { color: #2e7d32; border-color: #c8e6c9; }

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 0.7rem 0.9rem; border: 2px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.checkbox-label { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-weight: 600; }
.preview-img { max-width: 120px; border-radius: 8px; margin-top: 0.5rem; border: 2px solid var(--border); }
.form-actions { display: flex; gap: 1rem; justify-content: flex-end; padding-top: 0.5rem; }
.form-card { max-width: 800px; }

/* ===== PAGE ACTIONS ===== */
.page-actions { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.search-form { display: flex; gap: 0.5rem; flex: 1; }
.search-form input, .search-form select { padding: 0.6rem 0.9rem; border: 2px solid var(--border); border-radius: 8px; font-size: 0.9rem; }
.search-form input { flex: 1; }
.total-count { color: var(--text-muted); font-size: 0.9rem; }

/* ===== PRODUCT GRID ===== */
.product-cell { display: flex; align-items: center; gap: 0.75rem; }
.product-thumb { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }
.product-grid-mini { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.product-mini-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: transform 0.2s; }
.product-mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-mini-card img { width: 100%; height: 100px; object-fit: cover; }
.pm-info { padding: 0.75rem; }
.pm-info h4 { font-size: 0.85rem; margin-bottom: 0.3rem; }
.pm-price { font-weight: 700; color: var(--primary); font-size: 0.85rem; }
.pm-stock { font-size: 0.8rem; color: var(--text-muted); }
.low-stock { color: #c62828 !important; font-weight: 700; }

/* ===== CATEGORY BARS ===== */
.category-bar { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem; }
.cat-name { width: 100px; color: var(--text-muted); text-transform: capitalize; }
.bar-wrap { flex: 1; background: var(--bg); border-radius: 20px; height: 10px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 20px; transition: width 1s; }
.cat-count { width: 30px; text-align: right; font-weight: 600; color: var(--primary); }

/* ===== ORDER ===== */
.order-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.order-info-grid h4 { margin-bottom: 0.75rem; color: var(--primary-dark); }
.order-info-grid p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.order-total { text-align: right; margin-top: 1rem; font-size: 1.2rem; color: var(--primary); }
.status-form { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.status-form select { padding: 0.5rem; border: 2px solid var(--border); border-radius: 8px; font-size: 0.85rem; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 0.4rem; justify-content: center; padding-top: 1rem; }
.page-btn { padding: 0.4rem 0.8rem; border: 2px solid var(--border); border-radius: 6px; text-decoration: none; color: var(--text); font-size: 0.85rem; transition: all 0.2s; }
.page-btn.active, .page-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 3rem; color: var(--text-muted); }
.empty-state i { font-size: 2.5rem; color: #c8e6c9; display: block; margin-bottom: 0.75rem; }

/* ===== ERROR PAGE ===== */
.error-page { text-align: center; padding: 5rem 2rem; }
.error-icon { font-size: 4rem; margin-bottom: 1rem; }

/* ===== TEXT UTILS ===== */
.text-muted { color: var(--text-muted); }
.text-warning { color: #e65100; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .mobile-toggle { display: block; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .auth-container { flex-direction: column; }
  .auth-illustration { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .order-info-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-date { display: none; }
}

/* ===== SELLER ===== */
.badge-role-seller { background: #fff3e0; color: #e65100; }
.badge-verified-sm { background: #e8f5e9; color: #2e7d32; display:inline-flex; align-items:center; gap:0.3rem; }
.badge-verified { display:inline-flex; align-items:center; gap:0.4rem; background:#e8f5e9; color:#2e7d32; padding:0.3rem 0.8rem; border-radius:20px; font-size:0.85rem; font-weight:600; }
.badge-unverified { display:inline-flex; align-items:center; gap:0.4rem; background:#fff8e1; color:#e65100; padding:0.3rem 0.8rem; border-radius:20px; font-size:0.85rem; }
.verified-dot { color:#4caf50; margin-left:0.3rem; font-size:0.85rem; }
.seller-header-card { background:white; border-radius:var(--radius); padding:1.5rem; margin-bottom:1.5rem; box-shadow:var(--shadow); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; border-left:5px solid var(--accent); }
.seller-badge-wrap { display:flex; align-items:center; gap:1rem; }
.seller-avatar { width:60px; height:60px; background:linear-gradient(135deg,#FF8C00,#e65100); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:1.5rem; }
.seller-meta h2 { font-size:1.3rem; color:var(--text); margin-bottom:0.3rem; }
.seller-stats-row { display:flex; gap:2rem; }
.seller-stat { text-align:center; }
.seller-stat .sv { display:block; font-size:1.5rem; font-weight:700; color:var(--primary); }
.seller-stat .sl { font-size:0.8rem; color:var(--text-muted); }

/* ===== KATALOG ===== */
.katalog-banner { display:flex; align-items:center; gap:1.5rem; background:white; border-radius:var(--radius); padding:1.5rem; margin-bottom:1.5rem; box-shadow:var(--shadow); }
.petani-banner { border-left:5px solid var(--secondary); }
.pembeli-banner { border-left:5px solid var(--primary); }
.katalog-banner > i { font-size:3rem; }
.petani-banner > i { color:var(--secondary); }
.pembeli-banner > i { color:var(--primary); }
.katalog-banner h3 { font-size:1.2rem; color:var(--text); margin-bottom:0.25rem; }
.katalog-banner p { color:var(--text-muted); font-size:0.9rem; }
.katalog-banner .btn-primary { margin-left:auto; white-space:nowrap; }
.katalog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1.25rem; margin-bottom:1.5rem; }
.katalog-card { background:white; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:transform 0.2s; display:flex; flex-direction:column; }
.katalog-card:hover { transform:translateY(-4px); }
.katalog-img-wrap { position:relative; height:140px; overflow:hidden; }
.katalog-img-wrap img { width:100%; height:100%; object-fit:cover; }
.katalog-badge-organic { position:absolute; top:8px; left:8px; background:#2e7d32; color:white; font-size:0.7rem; padding:2px 8px; border-radius:20px; font-weight:600; }
.katalog-badge-cat { position:absolute; top:8px; right:8px; background:rgba(0,0,0,0.6); color:white; font-size:0.7rem; padding:2px 8px; border-radius:20px; }
.katalog-info { padding:0.9rem; flex:1; display:flex; flex-direction:column; gap:0.3rem; }
.katalog-info h4 { font-size:0.9rem; color:var(--text); }
.katalog-seller { font-size:0.78rem; color:var(--text-muted); display:flex; align-items:center; gap:0.3rem; }
.katalog-loc { font-size:0.75rem; color:var(--text-muted); }
.katalog-footer { display:flex; justify-content:space-between; align-items:center; margin-top:0.3rem; }
.katalog-price { font-weight:700; color:var(--primary); font-size:0.95rem; }
.katalog-unit { color:var(--text-muted); font-size:0.8rem; }
.katalog-stock { font-size:0.75rem; color:var(--text-muted); }
.katalog-btn { width:100%; justify-content:center; margin-top:0.75rem; font-size:0.85rem; }

/* ===== TABS ===== */
.tabs-row { display:flex; gap:0.5rem; margin-bottom:1rem; border-bottom:2px solid var(--border); padding-bottom:0; }
.tab-btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.6rem 1.2rem; border-radius:8px 8px 0 0; text-decoration:none; color:var(--text-muted); font-weight:600; font-size:0.9rem; border:2px solid transparent; border-bottom:none; margin-bottom:-2px; transition:all 0.2s; }
.tab-btn:hover { background:var(--bg); color:var(--primary); }
.tab-btn.active { background:white; color:var(--primary); border-color:var(--border); border-bottom-color:white; }
.tab-count { background:var(--primary); color:white; font-size:0.7rem; padding:1px 6px; border-radius:20px; }

/* Notification Bell */
.notif-bell { position:relative; display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; color: var(--text); text-decoration:none; font-size:1.1rem; transition:background 0.2s; }
.notif-bell:hover { background: #e8f5e9; color: var(--primary); }
.notif-badge { position:absolute; top:-2px; right:-2px; background:#f44336; color:white; font-size:0.65rem; font-weight:700; min-width:16px; height:16px; border-radius:8px; display:flex; align-items:center; justify-content:center; padding:0 3px; }
.badge-count { background: var(--primary); color:white; font-size:0.65rem; font-weight:700; min-width:16px; height:16px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; padding:0 4px; margin-left:auto; }

/* Notification List */
.notif-list { list-style:none; margin:0; padding:0; }
.notif-item { border-bottom:1px solid #f0f0f0; }
.notif-item:last-child { border-bottom:none; }
.notif-unread { background:#f1f8e9; }
.notif-btn { width:100%; background:none; border:none; cursor:pointer; display:flex; align-items:center; gap:0.75rem; padding:1rem 1.25rem; text-align:left; transition:background 0.15s; }
.notif-btn:hover { background:#e8f5e9; }
.notif-dot { width:8px; height:8px; border-radius:50%; background:#bdbdbd; flex-shrink:0; }
.notif-unread .notif-dot { background: var(--primary); }
.notif-content { flex:1; }
.notif-msg { margin:0 0 0.2rem; font-size:0.9rem; color: var(--text); font-weight:500; }
.notif-unread .notif-msg { font-weight:700; }
.notif-time { font-size:0.78rem; color:#9e9e9e; }
.notif-arrow { color:#bdbdbd; font-size:0.75rem; }

/* Payment Box */
.payment-box { border:2px solid #90caf9; border-radius:10px; overflow:hidden; }
.payment-box-header { background:#e3f2fd; color:#1565c0; padding:0.85rem 1.25rem; display:flex; align-items:center; gap:0.6rem; font-size:0.95rem; }
.payment-box-body { padding:1rem 1.25rem; background:#fff; }
.payment-table { border-collapse:collapse; width:100%; }
.payment-table td { padding:0.35rem 0.75rem 0.35rem 0; font-size:0.9rem; vertical-align:top; }
.payment-table td:first-child { color:#666; white-space:nowrap; width:160px; }
