// ======================================
// FILE: assets/css/style.css
// ======================================
body {
  background-color: #f7f8fa;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.sidebar {
  width: 240px;
  min-height: 100vh;
  background: linear-gradient(180deg, #002b5b, #00509e);
  color: white;
}

.sidebar .nav-link {
  color: #eee;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background 0.2s;
}

.sidebar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link i {
  width: 20px;
  text-align: center;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.table th {
  background-color: #f2f5fa;
}

.btn-primary {
  background-color: #00509e;
  border-color: #00509e;
}

.btn-primary:hover {
  background-color: #003f7f;
}