:root{
  --brand:#111;
  --soft:#f6f7f9;
}

*{ font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Arial, sans-serif; }

body{ background: var(--soft); }

.navbar-brand img{
  height: 34px;
  width: auto;
}

.card{
  border: 0;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
}

.sidebar{
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  padding: 14px;
}

.sidebar a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 12px;
  color:#222;
  text-decoration:none;
}

.sidebar a.active, .sidebar a:hover{
  background:#111;
  color:#fff;
}

.badge-soft{
  background:#eef0f3;
  color:#111;
  border-radius:999px;
  padding:6px 10px;
}

.table thead th{
  background:#111 !important;
  color:#fff !important;
  border:0 !important;
}

.btn{
  border-radius: 12px;
}

.form-control, .form-select{
  border-radius: 12px;
  padding: 10px 12px;
}

.small-muted{ color:#6b7280; font-size: .9rem; }
