/* Excart POS Admin Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; background: #0f172a; color: #fff; min-height: 100vh; }
a { color: #7c3aed; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Login Page */
.login-container { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-box { background: #020617; padding: 32px; width: 340px; border-radius: 14px; box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.login-box h1 { color: #fff; font-size: 20px; margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 14px; }
.form-group input { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #1e293b; background: #020617; color: #fff; font-size: 14px; }
.form-group input:focus { outline: none; border-color: #7c3aed; }
.btn { width: 100%; padding: 12px; background: #7c3aed; border: none; border-radius: 10px; color: #fff; font-weight: 700; cursor: pointer; font-size: 14px; }
.btn:hover { background: #6d28d9; }
.error { color: #f87171; text-align: center; margin-bottom: 12px; font-size: 13px; }
.login-footer { text-align: center; margin-top: 18px; color: #475569; font-size: 13px; }

/* Dashboard Layout */
.navbar { background: #020617; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #1e293b; }
.navbar h1 { font-size: 18px; color: #fff; }
.navbar .logout { color: #94a3b8; font-size: 14px; }
.navbar .logout:hover { color: #f87171; }
.container { max-width: 1200px; margin: 0 auto; padding: 24px; }
.page-title { font-size: 24px; margin-bottom: 24px; color: #fff; }

/* Tables */
table { width: 100%; border-collapse: collapse; background: #020617; border-radius: 12px; overflow: hidden; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #1e293b; }
th { background: #0f172a; font-size: 12px; text-transform: uppercase; color: #94a3b8; font-weight: 600; }
tr:hover { background: #0f172a; }
.empty-msg { color: #64748b; text-align: center; padding: 40px; }

/* Action Buttons */
.action-btns { display: flex; gap: 8px; }
.btn-sm { padding: 6px 12px; border: none; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; }
.btn-approve { background: #16a34a; color: #fff; }
.btn-approve:hover { background: #15803d; }
.btn-reject { background: #dc2626; color: #fff; }
.btn-reject:hover { background: #b91c1c; }
.btn-view { background: #3b82f6; color: #fff; }
.btn-view:hover { background: #2563eb; }

/* Status Badges */
.badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-pending { background: #fef3c7; color: #d97706; }
.badge-active { background: #dcfce7; color: #16a34a; }
.badge-rejected { background: #fee2e2; color: #dc2626; }

/* Section Titles */
.section-title { font-size: 18px; margin: 32px 0 16px; color: #e2e8f0; }
.section-title:first-of-type { margin-top: 0; }

/* Flash Messages */
.flash { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }

