/* Contoh styling di file CSS tema Anda */

/* Memberi gaya umum pada semua baris */
.stats-table .stat-row {
  border-bottom: 1px solid #eee;
}

/* Memberi gaya umum pada semua sel label */
.stats-table .stat-label {
  color: #333;
  padding-left: 15px; /* Sedikit lebih menjorok ke dalam */
}

/* Memberi gaya umum pada semua sel nilai */
.stats-table .stat-value {
  font-family: 'Courier New', Courier, monospace; /* Font yang baik untuk angka */
  color: #0056b3;
}

/* CONTOH SPESIFIK: menyorot baris Acceptance Rate */
.stats-table .stat-row-acceptanceRate {
  background-color: #eafbea; /* Warna hijau muda */
}

/* CONTOH SPESIFIK: membuat nilai "daysToDecision" menjadi merah jika terlalu lama */
.stats-table .stat-row-daysToDecision .stat-value {
  color: #dc3545; /* Warna merah */
}

.yearly-average, .yearly-average-modal, .days-label {
	font-size: 0.8em;
	font-weight: normal;
	color: #555;
	margin-left: 5px;
}

.active-stats-panel {
	display: flex;
	align-items: center;
	gap: 2rem;
	background-color: #003366;
	color: #fff;
	border-radius: 0.25rem;
	padding: 1.5rem;
	margin-bottom: 2rem;
}
.chart-container {
	flex-shrink: 0;
}
.chart-display {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}
.chart-display::before {
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	background: #003366;
	border-radius: 50%;
}
.chart-text {
	position: relative;
	text-align: center;
}
.total-active-count {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.1;
}
.total-active-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
.stages-breakdown {
	display: flex;
	flex-grow: 1;
	justify-content: space-around;
	gap: 1rem;
}
.stage-item {
	text-align: center;
}
.stage-count {
	font-size: 1.75rem;
	font-weight: 700;
}
.stage-label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
}
.stats-table {
	margin-top: 1rem;
}
.stat-header-desc, .stat-header-value {
	font-weight: bold;
	color: #495057;
}