body {
  background: #f4f6f9;
  font-family: 'Segoe UI';
}

/* SIDEBAR */
.sidebar {
  width: 230px;
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  position: fixed;
  padding: 20px;
}

.sidebar a {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  margin-bottom: 8px;
  transition: 0.2s;
}

.sidebar a:hover {
  background: #f1f5f9;
}

/* MAIN */
.main {
  margin-left: 230px;
  padding: 20px;
}

/* TOPBAR */
.topbar {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* CARD */
.card-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* STATUS DOT */
.status-dot {
  height: 10px;
  width: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

/* SWITCH MODERN */
.switch-ui {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}

.switch-ui input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #d1d5db;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: .3s;
}

input:checked + .slider {
  background-color: #22c55e;
}

input:checked + .slider:before {
  transform: translateX(20px);
}