*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:#0f1117;

color:white;

font-family:Arial,Helvetica,sans-serif;

}

.wrapper{

display:flex;

height:100vh;

}

.topbar{

position:fixed;

left:0;

right:0;

height:70px;

background:#1b1d25;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 30px;

border-bottom:1px solid #333;

z-index:100;

}

.logo{

font-size:24px;

font-weight:bold;

color:#d4b46a;

}

.version{

color:#999;

}

.sidebar{

margin-top:70px;

width:250px;

background:#171922;

padding:25px;

}

.sidebar h2{

margin-bottom:25px;

color:#d4b46a;

}

.sidebar ul{

list-style:none;

}

.sidebar li{

margin-bottom:18px;

}

.sidebar a{

text-decoration:none;

color:#ddd;

}

.sidebar a:hover{

color:#d4b46a;

}

.content{

flex:1;

margin-top:70px;

padding:40px;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:20px;

margin-top:30px;

}

.card{

background:#1d202b;

padding:25px;

border-radius:12px;

border:1px solid #2f3344;

}

.card h3{

margin-bottom:15px;

color:#d4b46a;

}

.page-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.eyebrow {
  color: #d8c179;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.page-hero h1 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #b9bbc7;
  max-width: 680px;
}

.hero-actions,
.quick-actions,
.brand-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn,
.quick-actions button,
.brand-list button {
  border: 1px solid #2c2f3a;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: #d8c179;
  color: #101014;
}

.btn-secondary,
.quick-actions button,
.brand-list button {
  background: #181922;
  color: #f5f1e8;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.kpi-card,
.panel {
  background: #171821;
  border: 1px solid #292b36;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.kpi-label {
  color: #b9bbc7;
  display: block;
  margin-bottom: 10px;
}

.kpi-card strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
  color: #f5f1e8;
}

.kpi-card p,
.employee-row p,
.activity-item p,
.notification-list p {
  color: #b9bbc7;
}

.command-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.large-panel {
  min-height: 260px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.panel h2 {
  font-size: 24px;
}

.status-pill {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
}

.green {
  background: rgba(46, 204, 113, .15);
  color: #66e69b;
}

.amber {
  background: rgba(255, 193, 7, .15);
  color: #ffd36a;
}

.employee-list,
.activity-list,
.notification-list {
  display: grid;
  gap: 12px;
}

.employee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #101119;
  border: 1px solid #252733;
  border-radius: 14px;
  padding: 14px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.status-dot.active {
  background: #66e69b;
}

.status-dot.standby {
  background: #ffd36a;
}

.activity-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.activity-item span {
  width: 10px;
  height: 10px;
  background: #d8c179;
  border-radius: 50%;
  margin-top: 7px;
  flex: 0 0 auto;
}

.notification-list p {
  background: #101119;
  border: 1px solid #252733;
  border-radius: 12px;
  padding: 12px;
}

@media (max-width: 1100px) {
  .kpi-grid,
  .command-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .page-hero {
    flex-direction: column;
  }

  .kpi-grid,
  .command-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 30px;
  }
}