body.bg-gradient {
  background: linear-gradient(135deg, #fff1f1, #ffeaea);
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
}

.login-card {
  border-left: 5px solid #dc3545;
  border-radius: 1rem;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.login-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 25px rgba(220, 53, 69, 0.3);
}

.login-card img {
  max-height: 60px;
}

.login-card p {
  color: lightgray;
}

.btn-danger {
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.text-danger {
  color: #dc3545 !important;
}

.form-control.border-danger {
  border-color: #dc3545;
}

.form-check-input.border-danger:checked {
  background-color: #dc3545;
  border-color: #dc3545;
}

.background-anim {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}

.circles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  list-style: none;
  z-index: -1;
}

.circles li {
  position: absolute;
  display: block;
  width: 20px; height: 20px;
  background: rgba(220, 53, 69, 0.2);
  animation: float 25s infinite;
  bottom: -150px;
  border-radius: 50%;
}

.circles li:nth-child(1) { left: 25%; width: 40px; height: 40px; animation-delay: 0s; }
.circles li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.circles li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.circles li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.circles li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.circles li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.circles li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

.section {
  padding: 2rem;
  background-color: #f9f9f9;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
}

.report-table thead {
  background-color: #dc3545; /* Bootstrap's danger color */
  color: #fff;
}

.report-table th, 
.report-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.report-table tr:hover {
  background-color: #f1f1f1;
  color: black;
}

.report-table td {
  color: #333;
  vertical-align: top;
}

h4.text-danger {
  color: #dc3545;
}

.report-table td,
.report-table th {
  font-size: 1rem;
  word-wrap: break-word;
  white-space: normal;
}

@media (max-width: 768px) {
  .report-table td,
  .report-table th {
    font-size: 0.85rem;
  }
}


