/* Global */
.financial-reports-page h2 {
  color: #002147;
}
.card {
  border-radius: 12px;
}
.fade-in {
  animation: fadeIn 1.2s ease-in-out;
}
.fade-up {
  animation: slideUp 1.2s ease-in-out;
}
.zoom-in {
  animation: zoomIn 0.8s ease-in-out;
}
.hover-float:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Chart Card */
.chart-card {
  border-radius: 16px;
}
.export-btn {
  transition: all 0.3s ease;
}
.export-btn:hover {
  background: #002147;
  color: #fff;
}

/* KPI Pills */
.kpi-pill {
  background: #f1f5fb;
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 150px;
  transition: all 0.3s ease;
}
.kpi-pill span {
  font-weight: 600;
  color: #002147;
  font-size: 1.1rem;
}
.kpi-pill:hover {
  background: #002147;
  color: #fff;
  transform: translateY(-5px);
}

/* Reports */
.report-card {
  border-radius: 12px;
  overflow: hidden;
  background: #002147;
  transition: all 0.3s ease;
  color: white;
}
.report-card img {
  object-fit: cover;
  height: 240px;
  width: 100%;
}

/* Highlight Cards */
.highlight-card {
  background: #f8faff;
  border: 2px solid #e1e6f0;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.highlight-card h5 {
  color: #002147;
  font-weight: bold;
}
.highlight-card:hover {
  background: #002147;
  color: #fff;
  transform: translateY(-6px);
}

/* PDF Buttons */
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #002147;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pdf-btn:hover {
  background: #002147;
  color: #fff;
}
.pdf-btn i {
  font-size: 1.2rem;
}

.report-card a {
  text-decoration: none !important;
  color: inherit;
}

.report-card h5,
.report-card p {
  text-decoration: none !important;
  margin: 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}