/* Dashboard.css */
.dashboard-container {
  padding: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-box h5 {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.icon {
  margin-bottom: 10px;
  color: #007bff;
}

.chart-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.page-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.custom-tabs {
  border: none !important;
  gap: 10px;
}

.custom-tabs .nav-item {
  border-bottom: 2px solid #ddd; /* Underline for tabs */
  border: none !important;
}

.custom-tabs .nav-item .nav-link {
  color: #555; /* Default tab color */
  font-weight: 500;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-item .nav-link:hover {
  color: #ffffff !important; /* Hover effect */
  background: #007bff !important;
}

.custom-tabs .nav-item .nav-link.active {
  color: #fff !important; /* Active tab text color */
  background: #007bff !important; /* Active tab background */
  border-color: #007bff !important;
  font-weight: bold;
}
