
/* ===== GLOBAL TEXT COLOR FIX ===== */
body {
  color: #e5e7eb;
}

h1, h2, h3, h4, h5, h6,
p, span, div, label, small {
  color: inherit;
}



/* ===== GLOBAL DARK BACKGROUND ===== */
/* ===============================
   PREMIUM DARK BACKGROUND
   Base: #0b1220
================================ */

html, body {
  min-height: 100%;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(56,189,248,0.06), transparent 40%),
    radial-gradient(900px 500px at 90% 10%, rgba(168,85,247,0.05), transparent 45%),
    radial-gradient(700px 400px at 50% 100%, rgba(34,197,94,0.04), transparent 50%),
    #0b1220;
  color: #e5e7eb;
}

html, body {
  background-color: #0b1220 !important;
  color: #e5e7eb;
}
.container,
main,
.page-wrap {
  background: transparent;
}


/* ===============================
   HEADER & NAVBAR
================================ */
.top-header {
  background: #111827;
  padding: 12px 0;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: #22c55e;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.navbar a {
  color: #e5e7eb;
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
}

.navbar a:hover {
  color: #22c55e;
}

.navbar .logout {
  color: #ef4444;
}

/* ===============================
   FOOTER
================================ */
.footer {
  margin-top: 40px;
  padding: 15px;
  background: #111827;
  color: #9ca3af;
  text-align: center;
  font-size: 13px;
}


* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f6f8;
  color: #111;
}

.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
}

h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

/* SERVICE CATEGORY CARDS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-4px);
}

/* TABLE */
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.table th {
  background: #1f2937;
  color: #fff;
  padding: 12px;
}

.table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

/* BUTTONS */
.btn {
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

/* ORDER FORM */
.form-box {
  background: #fff;
  max-width: 500px;
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.form-box textarea {
  width: 100%;
  padding: 10px;
  height: 120px;
  margin-top: 10px;
}

.form-box button {
  width: 100%;
  margin-top: 15px;
}

/* STATUS BADGES */
.badge {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.pending { background: orange; color: #fff; }
.processing { background: #2563eb; color: #fff; }
.completed { background: green; color: #fff; }
.rejected { background: red; color: #fff; }




/* DASHBOARD WELCOME */
.dash-welcome {
  text-align: center;
  margin-bottom: 35px;
}
.dash-welcome h2 {
  font-size: 26px;
  margin: 0;
}
.dash-welcome p {
  color: #9ca3af;
  font-size: 14px;
}

/* NEON TEXT EFFECT */
.neon-text {
  background: linear-gradient(90deg, #22c55e, #0ea5e9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* GLOWING CARDS */
.glow-card {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(34,197,94,0.2);
  box-shadow: 0 0 15px rgba(34,197,94,0.3);
  transition: 0.3s;
}
.glow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(168,85,247,0.5);
  border-color: #a855f7;
}
.glow-card p {
  font-size: 13px;
  color: #d1d5db;
  margin: 0 0 6px;
}
.glow-card h3 {
  font-size: 24px;
  margin: 5px 0 12px;
}

/* NEON BUTTON */
.btn-neon {
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  display: inline-block;
  box-shadow: 0 0 10px #22c55e;
}
.btn-neon:hover {
  box-shadow: 0 0 20px #0ea5e9;
}

/* ORDERS SECTION */
.orders-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  border-left: 4px solid #22c55e;
  padding-left: 10px;
}

/* TABLE FIX */
.table td, .table th {
  font-size: 14px;
}

/* BADGES */
.badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
}
.badge.pending { background: #f59e0b; }
.badge.processing { background: #3b82f6; }
.badge.completed { background: #22c55e; }
.badge.rejected { background: #ef4444; }


/* ===== STICKY FOOTER FIX ===== */
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}

/* Footer styling (adjust colors if needed) */
.site-footer {
  background: #020617;
  border-top: 1px solid rgba(56,189,248,0.25);
  color: #94a3b8;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px;
  text-align: center;
  font-size: 13px;
}






/*new code from here*/

/* ====== STICKY FOOTER FIX + GLOBAL WRAPPER ====== */
.site-body { margin:0; }
.site-wrapper{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-content{
  flex: 1;
}

/* ====== HEADER / NAV (stable) ====== */
.top-header{
  background:#111827;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding: 12px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 15px;
}
.logo a{
  text-decoration:none;
  font-weight:800;
  font-size: 20px;
  color:#22c55e;
}
.navbar{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}
.navbar a{
  color:#e5e7eb;
  text-decoration:none;
  font-size:14px;
  padding: 8px 10px;
  border-radius: 8px;
}
.navbar a:hover{
  background: rgba(255,255,255,.06);
  color:#22c55e;
}
.navbar a.logout{
  color:#ef4444;
}

/* ====== FOOTER (always bottom) ====== */
.site-footer{
  background:#111827;
  border-top: 1px solid rgba(255,255,255,.06);
  color:#9ca3af;
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding: 14px 15px;
  text-align:center;
  font-size: 13px;
}


/*order page code from here*/

/* Panel layout */
.panel{background:#0f172a;border:1px solid rgba(56,189,248,.25);box-shadow:0 0 18px rgba(56,189,248,.18);border-radius:12px;padding:22px;max-width:900px;margin:25px auto;color:#fff}
.panel-head{display:flex;gap:18px;justify-content:space-between;flex-wrap:wrap;align-items:flex-start}
.panel-title{margin:0;font-size:22px}
.panel-sub{margin:8px 0 0;color:#94a3b8;font-size:14px}
.panel-mini{display:flex;gap:12px;flex-wrap:wrap}
.mini-box{background:#111827;border:1px solid rgba(168,85,247,.25);border-radius:10px;padding:10px 12px;min-width:160px}
.mini-box span{display:block;color:#94a3b8;font-size:12px}
.mini-box b{display:block;margin-top:4px;font-size:16px;color:#e5e7eb}

.form label{display:block;margin:14px 0 6px;color:#cbd5e1;font-size:14px}
.form textarea{width:100%;min-height:120px;padding:12px;border-radius:10px;border:none;background:#1e293b;color:#fff;resize:vertical}
.hint{margin-top:10px;color:#94a3b8;font-size:13px}
.hint a{color:#38bdf8;text-decoration:none}

.alert{padding:12px;border-radius:10px;margin:14px 0;font-weight:600}
.alert-warn{background:#7c2d12;color:#fff}
.alert a{color:#38bdf8;text-decoration:none}

.order-summary{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin-top:14px}
.order-summary div{background:#111827;border:1px solid rgba(34,197,94,.2);border-radius:10px;padding:12px}
.order-summary span{display:block;color:#94a3b8;font-size:12px}
.order-summary b{display:block;margin-top:4px;color:#e5e7eb}


/*SERVICE PAGE NEW DESIGN CODE FROM HERE*/

/* ===============================
   SERVICES – NEON CARD DESIGN
================================ */

.page-head {
  text-align: center;
  margin: 10px 0 25px;
}
.page-head h2 {
  margin: 0;
  font-size: 26px;
}
.page-head p {
  margin: 8px 0 0;
  color: #94a3b8;
  font-size: 14px;
}

/* CATEGORY CARDS */
.neon-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.neon-cat-card {
  display: block;
  padding: 22px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.75);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 0 18px rgba(56,189,248,0.14);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.neon-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 26px rgba(168,85,247,0.22);
}
.neon-cat-title {
  font-weight: 800;
  letter-spacing: .2px;
  background: linear-gradient(90deg,#22c55e,#0ea5e9,#a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}
.neon-cat-sub {
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 13px;
}

/* SERVICES GRID */
.service-grid-neon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.service-card-neon {
  background: rgba(15, 23, 42, 0.78);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 18px rgba(56,189,248,0.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card-neon:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 28px rgba(34,197,94,0.18);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.service-name {
  font-weight: 800;
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.25;
}
.service-price {
  font-weight: 900;
  font-size: 16px;
  color: #38bdf8;
  white-space: nowrap;
}

.service-desc {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
  min-height: 48px;
}

/* NEON OUTLINE BUTTONS (NO SOLID FILL) */
.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.btn-neon-outline,
.btn-neon-ghost {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

/* main action: neon border only */
.btn-neon-outline {
  color: #e5e7eb;
  border: 1px solid rgba(56, 189, 248, 0.65);
  background: transparent;
  box-shadow: 0 0 14px rgba(56,189,248,0.18);
}
.btn-neon-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow: 0 0 22px rgba(168,85,247,0.25);
  color: #ffffff;
}

/* secondary: subtle border */
.btn-neon-ghost {
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
}
.btn-neon-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 18px rgba(34,197,94,0.18);
  color: #ffffff;
}

.empty-box {
  grid-column: 1/-1;
  background: rgba(15, 23, 42, 0.65);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  padding: 18px;
  border-radius: 14px;
  color: #cbd5e1;
  text-align: center;
}

/* ===============================
   SERVICES – NEON CARD DESIGN
================================ */

.page-head {
  text-align: center;
  margin: 10px 0 25px;
}
.page-head h2 {
  margin: 0;
  font-size: 26px;
}
.page-head p {
  margin: 8px 0 0;
  color: #94a3b8;
  font-size: 14px;
}

/* CATEGORY CARDS */
.neon-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.neon-cat-card {
  display: block;
  padding: 22px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.75);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 0 18px rgba(56,189,248,0.14);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.neon-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 26px rgba(168,85,247,0.22);
}
.neon-cat-title {
  font-weight: 800;
  letter-spacing: .2px;
  background: linear-gradient(90deg,#22c55e,#0ea5e9,#a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}
.neon-cat-sub {
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 13px;
}

/* SERVICES GRID */
.service-grid-neon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.service-card-neon {
  background: rgba(15, 23, 42, 0.78);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 18px rgba(56,189,248,0.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card-neon:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 28px rgba(34,197,94,0.18);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.service-name {
  font-weight: 800;
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.25;
}
.service-price {
  font-weight: 900;
  font-size: 16px;
  color: #38bdf8;
  white-space: nowrap;
}

.service-desc {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
  min-height: 48px;
}

/* NEON OUTLINE BUTTONS (NO SOLID FILL) */
.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.btn-neon-outline,
.btn-neon-ghost {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

/* main action: neon border only */
.btn-neon-outline {
  color: #e5e7eb;
  border: 1px solid rgba(56, 189, 248, 0.65);
  background: transparent;
  box-shadow: 0 0 14px rgba(56,189,248,0.18);
}
.btn-neon-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow: 0 0 22px rgba(168,85,247,0.25);
  color: #ffffff;
}

/* secondary: subtle border */
.btn-neon-ghost {
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
}
.btn-neon-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 18px rgba(34,197,94,0.18);
  color: #ffffff;
}

.empty-box {
  grid-column: 1/-1;
  background: rgba(15, 23, 42, 0.65);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  padding: 18px;
  border-radius: 14px;
  color: #cbd5e1;
  text-align: center;
}


/* =========================
   SERVICE LIST (DHURU STYLE)
========================== */
.svc-page-head{
  padding:18px 0 10px;
}
.svc-page-head h2{
  margin:0;
  font-size:26px;
  color:#e5e7eb;
  font-weight:700;
}
.svc-breadcrumb{
  margin-top:6px;
  font-size:13px;
  color:#9ca3af;
}

.svc-filterbar{
  background:#0f172a;
  border:1px solid rgba(56,189,248,0.12);
  box-shadow:0 0 18px rgba(15, 23, 42, 0.6);
  border-radius:14px;
  padding:14px;
  display:flex;
  gap:14px;
  align-items:center;
  margin:16px 0 22px;
}

.svc-select{
  width:220px;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(56,189,248,0.12);
  background:#111827;
  color:#e5e7eb;
}

.svc-searchform{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
}
.svc-search{
  flex:1;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(56,189,248,0.12);
  background:#111827;
  color:#e5e7eb;
  outline:none;
}
.svc-searchbtn{
  padding:12px 14px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  background:linear-gradient(90deg,#22c55e,#0ea5e9);
  color:#000;
  font-weight:700;
}
.svc-check{
  display:flex;
  align-items:center;
  gap:8px;
  color:#e5e7eb;
  font-size:13px;
  user-select:none;
}

.svc-empty{
  padding:16px;
  border-radius:12px;
  background:#0f172a;
  color:#e5e7eb;
  border:1px solid rgba(56,189,248,0.12);
}

.svc-group{
  margin-bottom:28px;
}
.svc-group-title{
  font-size:20px;
  font-weight:700;
  color:#e5e7eb;
  margin:0 0 12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.svc-online{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,0.35);
  color:#a7f3d0;
  background:rgba(34,197,94,0.08);
}

.svc-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:16px;
}

.svc-card{
  background:linear-gradient(180deg,#0f172a,#111827);
  border:1px solid rgba(56,189,248,0.14);
  border-radius:14px;
  padding:16px;
  box-shadow:0 0 18px rgba(56,189,248,0.08);
  transition:.18s ease;
  min-height:170px;
}
.svc-card:hover{
  transform:translateY(-3px);
  border-color:rgba(168,85,247,0.35);
  box-shadow:0 0 26px rgba(168,85,247,0.18);
}

.svc-card-name{
  color:#e5e7eb;
  font-weight:700;
  font-size:14px;
  line-height:1.3;
}

.svc-tags{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.svc-tag{
  font-size:11px;
  font-weight:700;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  color:#e5e7eb;
  background:rgba(255,255,255,0.05);
}
.svc-tag-api{
  border-color:rgba(56,189,248,0.28);
  background:rgba(56,189,248,0.10);
}
.svc-tag-ok{
  border-color:rgba(34,197,94,0.30);
  background:rgba(34,197,94,0.10);
}

.svc-card-desc{
  margin-top:12px;
  color:#9ca3af;
  font-size:13px;
  line-height:1.45;
  min-height:46px;
}

.svc-card-bottom{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.svc-price{
  font-size:14px;
  font-weight:800;
  color:#a7f3d0;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid rgba(34,197,94,0.25);
  background:rgba(34,197,94,0.08);
}

.svc-order-btn{
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  padding:10px 12px;
  border-radius:12px;
  color:#e5e7eb;
  border:1px solid rgba(56,189,248,0.40);
  background:rgba(56,189,248,0.06);
  box-shadow:0 0 14px rgba(56,189,248,0.10);
  transition:.18s ease;
}
.svc-order-btn:hover{
  border-color:rgba(168,85,247,0.55);
  background:rgba(168,85,247,0.10);
  box-shadow:0 0 22px rgba(168,85,247,0.18);
}

@media (max-width: 640px){
  .svc-filterbar{ flex-direction:column; align-items:stretch; }
  .svc-select{ width:100%; }
  .svc-searchform{ flex-direction:column; align-items:stretch; }
  .svc-searchbtn{ width:100%; }
}

/* Keep footer at bottom */
html, body { height: 100%; }
.page-wrap { min-height: calc(100vh - 70px); } /* adjust if header height differs */

/* Basic header (if you already have, skip) */
.top-header { background:#111827; padding:12px 0; }
.header-inner { max-width:1200px; margin:auto; padding:0 15px; display:flex; align-items:center; justify-content:space-between; }
.logo a { color:#22c55e; font-size:20px; font-weight:700; text-decoration:none; }
.navbar a { color:#e5e7eb; margin-left:16px; text-decoration:none; font-size:14px; }
.navbar a:hover { color:#22c55e; }
.navbar .logout { color:#ef4444; }

.footer { background:#111827; color:#9ca3af; text-align:center; padding:14px; }


/* Make footer stay bottom */
html, body { height: 100%; }
body { min-height: 100%; display: flex; flex-direction: column; }
main.container { flex: 1; }

/* Dashboard header */
.dash-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin: 18px 0 22px;
  flex-wrap:wrap;
}
.dash-title{ margin:0; font-size:26px; }
.dash-sub{ color:#94a3b8; font-size:13px; margin-top:6px; }

.dash-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.btn-outline{
  border:1px solid rgba(56,189,248,0.45);
  color:#e5e7eb;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  background:rgba(15,23,42,0.7);
}
.btn-outline:hover{ box-shadow:0 0 18px rgba(56,189,248,0.25); }

/* Two-column dashboard grid */
.dash-grid-2{
  display:grid;
  grid-template-columns: 1.45fr 1fr;
  gap:18px;
  margin-top: 14px;
}
@media (max-width: 980px){
  .dash-grid-2{ grid-template-columns: 1fr; }
}

/* Panels */
.panel{
  background:#0f172a;
  border:1px solid rgba(56,189,248,0.25);
  border-radius:14px;
  box-shadow:0 0 18px rgba(56,189,248,0.18);
  overflow:hidden;
}
.panel-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(148,163,184,0.18);
}
.panel-head h3{ margin:0; font-size:16px; color:#e5e7eb; }
.panel .link{ color:#38bdf8; text-decoration:none; font-weight:600; font-size:13px; }
.panel .link:hover{ text-decoration:underline; }

.table-wrap{ padding: 10px 12px 14px; }
.table{ width:100%; background:transparent; box-shadow:none; }
.table th{
  background:transparent;
  color:#94a3b8;
  font-weight:600;
  font-size:12px;
  border-bottom:1px solid rgba(148,163,184,0.18);
}
.table td{
  color:#e5e7eb;
  border-bottom:1px solid rgba(148,163,184,0.10);
  font-size:13px;
}
.td-left{ text-align:left; }
.td-title{ font-weight:700; color:#e5e7eb; }
.td-sub{ color:#94a3b8; font-size:12px; margin-top:2px; }

.mini-hint{
  color:#94a3b8;
  font-size:12px;
  margin-top:6px;
}

/* Announcements */
.announce-list{ padding: 10px 14px 14px; display:flex; flex-direction:column; gap:10px; }
.announce-item{
  background:rgba(30,41,59,0.65);
  border:1px solid rgba(148,163,184,0.12);
  border-radius:12px;
  padding:12px;
}
.announce-title{ font-weight:800; color:#e5e7eb; font-size:13px; }
.announce-body{ color:#cbd5e1; font-size:12px; margin-top:6px; line-height:1.4; }
.announce-date{ color:#94a3b8; font-size:11px; margin-top:8px; }

.empty-box{
  padding:16px;
  color:#94a3b8;
}

/* ===============================
   PROFESSIONAL USER PROFILE
================================ */

.profile-wrap{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:20px;
  margin-top:20px;
}

@media(max-width:900px){
  .profile-wrap{ grid-template-columns:1fr; }
}

/* LEFT CARD */
.profile-card{
  background:linear-gradient(180deg,#0f172a,#111827);
  border:1px solid rgba(56,189,248,.25);
  border-radius:16px;
  padding:22px;
  text-align:center;
  box-shadow:0 0 22px rgba(56,189,248,.15);
  color:#e5e7eb;
}

.profile-card h3{
  margin:8px 0 4px;
  color:#e5e7eb;
  font-weight:700;
}

.profile-card .email{
  color:#94a3b8;
  font-size:13px;
}

.avatar{
  width:72px;height:72px;
  border-radius:50%;
  background:linear-gradient(90deg,#22c55e,#0ea5e9,#a855f7);
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:900;
  margin:0 auto 12px;
}

.balance-box{
  margin:16px 0;
  padding:14px;
  border-radius:12px;
  background:rgba(34,197,94,.08);
  border:1px solid rgba(34,197,94,.25);
}

.balance-box span{
  display:block;
  font-size:12px;
  color:#a7f3d0;
}

.balance-box strong{
  display:block;
  font-size:22px;
  font-weight:800;
  color:#a7f3d0;
}

.meta{
  font-size:12px;
  color:#94a3b8;
  margin-top:10px;
}

/* RIGHT PANEL */
.profile-content{
  background:linear-gradient(180deg,#0f172a,#111827);
  border:1px solid rgba(56,189,248,.25);
  border-radius:16px;
  box-shadow:0 0 22px rgba(56,189,248,.15);
  color:#e5e7eb;
}

/* TABS */
.tabs{
  display:flex;
  border-bottom:1px solid rgba(148,163,184,.18);
}

.tab{
  padding:14px 18px;
  background:none;
  border:none;
  color:#94a3b8;
  cursor:pointer;
  font-weight:700;
}

.tab.active{
  color:#38bdf8;
  border-bottom:2px solid #38bdf8;
}

/* TAB CONTENT */
.tab-box{
  display:none;
  padding:20px;
  color:#e5e7eb;
}

.tab-box.active{ display:block; }

.tab-box h4{
  margin:0 0 12px;
  color:#e5e7eb;
}

/* FORMS */
.tab-box label{
  display:block;
  margin-top:14px;
  font-size:13px;
  color:#cbd5e1;
}

.tab-box input{
  width:100%;
  padding:11px;
  border-radius:10px;
  border:1px solid rgba(148,163,184,.25);
  background:#1e293b;
  color:#e5e7eb;
  margin-top:6px;
}

.tab-box input:focus{
  outline:none;
  border-color:#38bdf8;
  box-shadow:0 0 0 2px rgba(56,189,248,.25);
}

/* TABLES */
.profile-content table{
  width:100%;
  border-collapse:collapse;
}

.profile-content th{
  text-align:left;
  font-size:12px;
  color:#94a3b8;
  border-bottom:1px solid rgba(148,163,184,.18);
  padding-bottom:8px;
}

.profile-content td{
  padding:10px 0;
  border-bottom:1px solid rgba(148,163,184,.1);
  color:#e5e7eb;
}

/* STATUS BADGES */
.badge{
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}

.badge.pending{ background:#fde68a;color:#92400e; }
.badge.completed{ background:#a7f3d0;color:#065f46; }
.badge.approved{ background:#a7f3d0;color:#065f46; }
.badge.rejected{ background:#fecaca;color:#991b1b; }


/* HEADER (Responsive) */
.top-header { background:#111827; padding:12px 0; }
.header-inner {
  max-width:1200px; margin:auto; padding:0 15px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}

.logo a { color:#22c55e; font-size:20px; font-weight:800; text-decoration:none; }

.navbar { display:flex; gap:16px; align-items:center; }
.navbar a { color:#e5e7eb; text-decoration:none; font-size:14px; }
.navbar a:hover { color:#22c55e; }
.navbar .logout { color:#ef4444; }

.nav-toggle {
  display:none;
  background:#0b1220;
  border:1px solid rgba(56,189,248,.25);
  color:#e5e7eb;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}

/* Mobile menu */
@media (max-width: 900px) {
  .nav-toggle { display:block; }
  .navbar {
    display:none;
    position:absolute;
    top:60px;
    left:0;
    right:0;
    background:#0b1220;
    border-top:1px solid rgba(56,189,248,.15);
    padding:12px 15px;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    z-index:9999;
  }
  .navbar.open { display:flex; }
}

