@charset "utf-8";
/* CSS Document */
.topbar-social {
  position: relative;
  display: inline-block;
}
.social-toggle {
  font-size: 1.125rem;
  color: #2e4ab7;
  cursor: pointer;
}
.social-dropdown {
  position: absolute;
  top: 100%;
  right: -18px;
  min-width: 140px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  white-space: nowrap;
}
.topbar-social:hover .social-dropdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/**/
.data-circle {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  width: 150px;
  height: 150px;
}
.tab-arrow {
  position: absolute;
  left: -60px;
}
.list-group-item-action:hover {
  background-color: #C4D0FF;
}
#nsapTabs .active {
  background: linear-gradient(to right, #4f51c0 35%, #f39f4d);
}
/**/
.key-indicators-section {
  background-color: #f9f9f9;
}
.indicator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #2743a3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
   /* white icons on blue */
}
/**/
#nsapDashboardTabs .nav-link {
  background: #435bbd;
  color: white;
}
#nsapDashboardTabs .nav-link.active, #nsapDashboardTabs .nav-link:hover {
  background: white;
  color: #435bbd;
}
.graph-bg {
  background: #090949;
}

.report-section {
  background-color: #fff;
}
.bg-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  center: 0%;
}
.bg-circle-1 {
  width: 400px;
  height: 400px;
  background-color: #ebeae7;
  top: -100px;
  left: calc(50% - 200px);
  z-index: 0;
}
.bg-circle-2 {
  width: 500px;
  height: 500px;
  background-color: #fdf5ed;
  top: -150px;
  left: calc(50% - 250px);
  z-index: 0;
}
.report-card {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  border-radius: 1rem;
  position: relative;
  transition: transform 0.3s ease;
}
.report-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 80, 0.45);
  z-index: 1;
  border-radius: 1rem;
}
.report-card .card-body {
  position: relative;
  z-index: 2;
}
.report-card:hover {
  transform: translateY(-5px);
}
.btn.w-fit {
  width: fit-content;
}
/**/
.custom-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1rem;
  background: white;
}
.custom-card-header {
  background: linear-gradient(to right, #2d3e91, #3445b4);
  height: 20px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.custom-card-body {
  padding: 1rem;
  color: black;
}
.custom-card-footer {
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  color: #6c757d;
}
.form-select {
  -webkit-appearance:auto !important;
  -moz-appearance:auto !important;
  appearance:auto !important;
  }