/* BACKGROUND GLOBAL */
body {
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.main-header {
  background: #2e7d32 !important;
}
.main-header .nav-link {
  color: white !important;
}

/* SIDEBAR */
.main-sidebar {
  background: #1b5e20 !important;
}
.brand-link {
  background: #2e7d32 !important;
  color: white !important;
}

/* SIDEBAR ACTIVE */
.nav-sidebar .nav-link.active {
  background: #66bb6a !important;
  color: white !important;
}

/* CARD */
.card, .small-box {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* BUTTON */
.btn-primary {
  background: #43a047;
  border: none;
}
.btn-primary:hover {
  background: #2e7d32;
}

/* TABLE */
.table th {
  background: #a5d6a7;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 20px;
}