:root {
  --bs-primary: #0d47a1;
  --bs-primary-rgb: 13, 71, 161;
  --bs-link-color: #0d47a1;
  --bs-link-hover-color: #1565c0;
}

body {
  background-color: #eef2f7;
  padding-bottom: 80px;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

  border-bottom: 2px solid var(--bs-primary);
}

.card {
  margin-bottom: 24px;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
}

.chart-container {
  position: relative;
  height: 45vh;
  width: 100%;
}

.update-notif {
  font-size: 0.75rem;
  color: #343a40;
  font-weight: bold;
  display: block;
  line-height: 1;
}

.nama-spesial {
  font-weight: 700;
  background: linear-gradient(
    45deg,
    #c71585,
    #ff8c00,
    #00ced1,
    #42a1af,
    #c71585
  );
  background-size: 400% 400%;
  animation: gradient-animation 10s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
