
/* GeHosp - Light Professional Theme */
:root{
  --gehosp-sidebar-width: 270px;
  --gehosp-bg: #f7f8fa;
  --gehosp-card: #ffffff;
  --gehosp-border: #e6e8ee;
  --gehosp-muted: #6b7280;
  --gehosp-primary: #0d6efd;
}

html, body {
  height: 100%;
  background: var(--gehosp-bg);
}

.app-shell{
  min-height: 100vh;
  display: flex;
}

.sidebar{
  width: var(--gehosp-sidebar-width);
  background: #ffffff;
  border-right: 1px solid var(--gehosp-border);
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 1rem;
}

.brand{
  display:flex;
  gap:.75rem;
  align-items:center;
  padding: .25rem .25rem 1rem .25rem;
  border-bottom: 1px solid var(--gehosp-border);
  margin-bottom: 1rem;
}

.brand-badge{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(13,110,253,.12);
  color: var(--gehosp-primary);
  font-weight: 700;
}

.brand-title{
  line-height: 1.1;
}
.brand-title strong{ display:block; font-size: 1.05rem;}
.brand-title small{ color: var(--gehosp-muted); }

.nav-section-title{
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--gehosp-muted);
  margin: 1rem .25rem .5rem .25rem;
  text-transform: uppercase;
}

.side-nav .nav-link{
  border-radius: .75rem;
  color: #111827;
  display:flex;
  gap:.6rem;
  align-items:center;
  padding: .6rem .75rem;
}
.side-nav .nav-link:hover{
  background: #f2f4f8;
}
.side-nav .nav-link.active{
  background: rgba(13,110,253,.12);
  color: var(--gehosp-primary);
  font-weight: 600;
}

.content{
  flex: 1;
  display:flex;
  flex-direction:column;
}

.topbar{
  background: #ffffff;
  border-bottom: 1px solid var(--gehosp-border);
  padding: .75rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.page{
  padding: 1.25rem;
}

.card-soft{
  background: var(--gehosp-card);
  border: 1px solid var(--gehosp-border);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
}

.banner-tile{
  border: 1px solid var(--gehosp-border);
  border-radius: 1.25rem;
  background: #ffffff;
  padding: 1rem;
  transition: transform .12s ease, box-shadow .12s ease;
  height: 100%;
}
.banner-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17,24,39,.10);
}
.banner-icon{
  width: 52px; height: 52px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(13,110,253,.10);
  color: var(--gehosp-primary);
  font-size: 1.35rem;
}
.banner-title{
  font-weight: 700;
  margin: .75rem 0 .15rem 0;
}
.banner-desc{
  color: var(--gehosp-muted);
  margin: 0 0 .75rem 0;
  font-size: .95rem;
}
.banner-link{
  text-decoration: none;
}

.kpi{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.kpi .kpi-item{
  padding: .9rem 1rem;
  border: 1px dashed var(--gehosp-border);
  border-radius: 1rem;
  background: #ffffff;
  min-width: 220px;
}
.kpi .kpi-item .label{ color: var(--gehosp-muted); font-size:.85rem;}
.kpi .kpi-item .value{ font-size:1.25rem; font-weight: 700; }

.footer-note{
  color: var(--gehosp-muted);
  font-size: .85rem;
}
