.piechart {
  width: 80%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;

}

.piechart2 {
  align-self: center;
  align-items: center;
  width: 80%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;
}

.big-font {
  font-size: 20px;
}

.border-bottom {
  border-top: 1px solid black;
  padding-top: 4px;

}

.space-between {
  justify-content: space-between;
}

.btn-default {
  background-color: white;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-right: 10px;


}

.conbox .right {
  background-color: rgb(255, 255, 255);
}

.conbox {
  display: flex;
  align-items: center;
  border: 1px solid black;
  background-color: rgb(181, 248, 248);
}

.alert-info {
  background-color: #9EF3FF;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.list-item {
  position: relative;
  padding-top: 12px;
  margin-bottom: 10px;

}

.list-item .counter {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  color: gray;
}

body {
  background-color: rgb(236, 236, 236);
}

.breadcrumb {
  background-color: white;
}

.breadcrumb a {
  color: grey;
}

.active {
  color: black;
}

.alignright{
  text-align: right;
}
.alignleft{
  text-align: left;
}
.aligncenter{
  text-align: center;
}
.width100{
  width: 100px;
}

/* ============================================================
   Institution Analytics Dashboard
   ============================================================ */

/* Analytics pending banner */
.inst-pending-banner {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffc107;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  color: #664d03;
  font-size: 0.88rem;
}

/* Stat cards */
.inst-stat-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  border-radius: 12px;
  border-left: 4px solid #4361ee;
  box-shadow: 0 2px 8px rgba(67,97,238,0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.inst-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(67,97,238,0.15);
}
.inst-stat-card--green {
  background: linear-gradient(135deg, #f0fff8 0%, #dcfce7 100%);
  border-left-color: #06d6a0;
  box-shadow: 0 2px 8px rgba(6,214,160,0.10);
}
.inst-stat-card--green:hover { box-shadow: 0 4px 16px rgba(6,214,160,0.18); }
.inst-stat-card--amber {
  background: linear-gradient(135deg, #fffdf0 0%, #fef9c3 100%);
  border-left-color: #ffd166;
  box-shadow: 0 2px 8px rgba(255,209,102,0.12);
}
.inst-stat-card--amber:hover { box-shadow: 0 4px 16px rgba(255,209,102,0.22); }
.inst-stat-card--teal {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left-color: #118ab2;
  box-shadow: 0 2px 8px rgba(17,138,178,0.10);
}
.inst-stat-card--teal:hover { box-shadow: 0 4px 16px rgba(17,138,178,0.18); }

.inst-stat-icon {
  font-size: 1.55rem;
  color: #4361ee;
  margin-bottom: 4px;
}
.inst-stat-card--green .inst-stat-icon { color: #06d6a0; }
.inst-stat-card--amber .inst-stat-icon { color: #d97706; }
.inst-stat-card--teal  .inst-stat-icon { color: #118ab2; }

.inst-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.15;
}
.inst-stat-label {
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin-top: 3px;
}

/* Chart cards */
.inst-chart-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid #e9ecef;
  overflow: hidden;
}
.inst-chart-card-header {
  background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.inst-chart-card-header--green {
  background: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
}
.inst-chart-card-header--teal {
  background: linear-gradient(135deg, #118ab2 0%, #3a0ca3 100%);
}
.inst-chart-card-body {
  padding: 16px;
}
