
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Shrikhand&display=swap');

:root{
  --stm-orange:#F48502;
  --stm-orange-dark:#D96F00;
  --stm-purple:#47427F;
  --stm-purple-dark:#393566;
  --stm-bg:#F7F6FA;
  --stm-card:#FFFFFF;
  --stm-text:#30313A;
  --stm-muted:#7D8292;
  --stm-border:#E8E6EF;
  --stm-shadow:0 8px 28px rgba(58,53,102,.065);
  --stm-shadow-hover:0 14px 34px rgba(58,53,102,.105);
}

*{box-sizing:border-box}

html,body{
  margin:0!important;
  padding:0!important;
  font-family:"Poppins",Arial,sans-serif!important;
  color:var(--stm-text)!important;
  background:
    radial-gradient(circle at 10% 0%,rgba(244,133,2,.045),transparent 28%),
    radial-gradient(circle at 95% 8%,rgba(71,66,127,.055),transparent 30%),
    var(--stm-bg)!important;
}

body.admin-body{min-height:100vh}

.admin-shell{
  width:min(1380px,calc(100% - 48px));
  margin:0 auto;
  padding:24px 0 34px;
}

/* HEADER */
.admin-navbar{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px 16px 10px 18px;
  margin-bottom:20px;
  background:rgba(255,255,255,.97);
  border:1px solid var(--stm-border);
  border-radius:16px;
  box-shadow:var(--stm-shadow);
}

.admin-brand{display:flex;align-items:center;gap:11px;min-width:240px}
.admin-brand-icon{
  width:40px;height:40px;border-radius:11px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;background:var(--stm-orange);
  font-size:16px;
}
.admin-brand-title{font-size:16px;font-weight:700;color:var(--stm-purple);line-height:1.2}
.admin-brand-subtitle{font-size:11px;font-weight:600;color:var(--stm-orange);margin-top:2px}

.admin-top-actions{display:flex;align-items:center;gap:3px}
.admin-top-link{
  display:inline-flex;align-items:center;gap:6px;
  padding:9px 11px;border-radius:8px;
  color:var(--stm-purple)!important;
  text-decoration:none!important;
  font-size:12px;font-weight:600;
}
.admin-top-link:hover,.admin-top-link.active{
  color:var(--stm-orange)!important;
  background:#FFF8EF;
}

/* WELCOME */
.admin-welcome{
  display:flex;align-items:center;justify-content:space-between;gap:25px;
  padding:25px 28px;margin-bottom:18px;
  background:#fff;border:1px solid var(--stm-border);
  border-radius:16px;box-shadow:var(--stm-shadow);
}
.admin-eyebrow{
  color:var(--stm-orange);font-size:10px;font-weight:700;
  letter-spacing:.13em;margin-bottom:6px;
}
.admin-welcome h1{
  margin:0 0 5px;color:var(--stm-purple);
  font-size:25px;font-weight:650;line-height:1.25;
}
.admin-welcome p{margin:0;color:var(--stm-muted);font-size:12.5px}
.admin-primary-btn{
  flex:0 0 auto;
  display:inline-flex;align-items:center;gap:7px;
  min-height:40px;padding:9px 15px;
  color:#fff!important;background:var(--stm-orange);
  border:1px solid var(--stm-orange);border-radius:9px;
  text-decoration:none!important;font-size:12px;font-weight:600;
  box-shadow:0 6px 15px rgba(244,133,2,.18);
}
.admin-primary-btn:hover{background:var(--stm-orange-dark);color:#fff!important}

/* STATS */
.admin-stats-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;margin-bottom:24px;
}
.admin-stat-card{
  display:flex;align-items:center;gap:13px;
  min-height:96px;padding:16px 18px;
  background:#fff;border:1px solid var(--stm-border);
  border-radius:14px;box-shadow:var(--stm-shadow);
}
.admin-stat-icon{
  width:46px;height:46px;min-width:46px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;color:#fff;font-size:17px;
}
.admin-stat-icon.orange{background:var(--stm-orange)}
.admin-stat-icon.green{background:#16964D}
.admin-stat-icon.slate{background:#5E6675}
.admin-stat-icon.purple{background:#7650E8}
.admin-stat-content h4{
  margin:0;color:var(--stm-purple);
  font-size:23px;line-height:1.05;font-weight:700;
}
.admin-stat-content p{
  margin:4px 0 0;color:var(--stm-muted);
  font-size:11.5px;line-height:1.3;
}

/* SECTIONS */
.admin-section{margin-bottom:24px}
.admin-section-heading{margin-bottom:12px}
.admin-section-kicker{
  display:block;color:var(--stm-orange);
  font-size:9.5px;font-weight:700;
  letter-spacing:.14em;margin-bottom:3px;
}
.admin-section-heading h2{
  margin:0;color:var(--stm-purple);
  font-size:20px;font-weight:650;line-height:1.3;
}
.admin-section-heading p{
  margin:3px 0 0;color:var(--stm-muted);font-size:11.5px;
}

/* MODULE CARDS */
.admin-module-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}
.admin-module-grid-small{grid-template-columns:repeat(4,minmax(0,1fr))}
.admin-module-card{
  position:relative;
  min-height:108px;
  display:flex;align-items:flex-start;gap:12px;
  padding:17px 18px;
  background:#fff;
  border:1px solid var(--stm-border);
  border-radius:14px;
  box-shadow:var(--stm-shadow);
  text-decoration:none!important;
  color:inherit!important;
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.admin-module-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--stm-shadow-hover);
  border-color:#DDD9EA;
}
.admin-module-card.coming-soon{cursor:default}
.admin-module-card.coming-soon:hover{transform:none;box-shadow:var(--stm-shadow)}
.admin-module-icon{
  width:39px;height:39px;min-width:39px;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;color:#fff;font-size:15px;
}
.admin-module-icon.orange{background:var(--stm-orange)}
.admin-module-icon.purple{background:#7650E8}
.admin-module-icon.blue{background:#4B76B8}
.admin-module-icon.green{background:#16964D}
.admin-module-icon.slate{background:#5E6675}
.admin-module-icon.gold{background:#C58A22}
.admin-module-icon.red{background:#C94A4A}
.admin-module-body{min-width:0;padding-right:18px}
.admin-module-body h3{
  margin:0 0 3px;color:#33313B;
  font-size:14px;font-weight:650;line-height:1.3;
}
.admin-module-body p{
  margin:0;color:var(--stm-muted);
  font-size:10.8px;line-height:1.45;
}
.admin-module-arrow{
  position:absolute;right:15px;top:50%;
  transform:translateY(-50%);
  color:#A3A5B0;font-size:11px;
}
.admin-module-card:hover .admin-module-arrow{color:var(--stm-orange)}
.admin-coming-badge{
  display:inline-flex;margin-top:7px;padding:3px 7px;
  border-radius:999px;background:#F3F1F8;color:var(--stm-purple);
  font-size:8.5px;font-weight:650;
}
.logout-card:hover{border-color:#F0CACA}

/* FOOTER */
.admin-footer{
  min-height:55px;margin-top:4px;padding:13px 18px;
  display:flex;align-items:center;justify-content:space-between;gap:15px;
  background:#fff;border:1px solid var(--stm-border);
  border-radius:13px;box-shadow:var(--stm-shadow);
  color:var(--stm-muted);font-size:10.5px;
}
.admin-footer strong{color:var(--stm-purple);font-weight:700;margin-right:8px}
.admin-footer span{font-size:10.5px}

/* RESPONSIVE */
@media(max-width:1100px){
  .admin-navbar{align-items:flex-start}
  .admin-top-actions{flex-wrap:wrap;justify-content:flex-end}
  .admin-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-module-grid,.admin-module-grid-small{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .admin-shell{width:calc(100% - 20px);padding:12px 0 24px}
  .admin-navbar{display:block;padding:14px;margin-bottom:13px}
  .admin-brand{min-width:0;margin-bottom:8px}
  .admin-top-actions{justify-content:flex-start;overflow-x:auto}
  .admin-top-link{flex:0 0 auto}
  .admin-welcome{display:block;padding:19px;margin-bottom:13px}
  .admin-welcome h1{font-size:21px}
  .admin-primary-btn{margin-top:13px}
  .admin-stats-grid{grid-template-columns:1fr;gap:10px;margin-bottom:19px}
  .admin-module-grid,.admin-module-grid-small{grid-template-columns:1fr}
  .admin-section-heading h2{font-size:18px}
  .admin-footer{display:block;text-align:center}
  .admin-footer span{display:block;margin-top:4px}
}
