/* LAPORAN KEUANGAN STYLES */
.laporan-page {
  padding-top: 100px;
  background-color: #f8fbff;
  min-height: 100vh;
}

.container-laporan {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* --- SUMMARY CARDS --- */
.laporan-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .label {
  display: block;
  font-size: 14px;
  color: #718096;
  font-weight: 600;
  margin-bottom: 15px;
}

.stat-card .value {
  font-size: 32px;
  font-weight: 800;
  color: #1a202c;
}

.stat-card .value.orange { color: var(--orange); }
.stat-card .value.green { color: var(--green); }

/* --- CHARTS --- */
.laporan-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
}

.chart-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
}

.chart-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.chart-card p {
  font-size: 14px;
  color: #a0aec0;
  margin-bottom: 30px;
}

.chart-wrapper {
  height: 300px;
  position: relative;
}

/* --- REPORTS LIST --- */
.reports-section-header {
  margin-bottom: 40px;
}

.reports-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a202c;
}

.reports-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.report-item-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.report-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.report-icon {
  width: 54px;
  height: 54px;
  background: rgba(232, 101, 10, 0.1);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.report-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #2d3748;
}

.report-info span {
  font-size: 13px;
  color: #718096;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .laporan-stats-grid { grid-template-columns: 1fr; }
  .laporan-charts-grid { grid-template-columns: 1fr; }
}
