:root {
  --orange: #f57c00;
  --blue: #005cb9;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

.page-header {
  background: var(--orange);
  color: var(--white);
  margin-top: 24px;
  padding: 20px 0 !important;
  text-align: center;
}

.page-header h1 {
  font-size: 36px !important;
  font-weight: 700;
}

.page-header p {
  font-size: 18px;
  /* margin-top: 10px;
        margin-top: 120px; */
  /* To avoid overlap with Quick Menu + Navbar */
  /* padding: 100px 0; */
}

.page-header h1 {
  font-weight: 600;
  color: var(--white) !important;
}

@media (max-width: 768px) {
  .page-header {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }
}

.section-title {
  color: #005cb9;
  border-bottom: 2px solid #005cb9;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Card style for account and annual reports */
.card-body ul a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-body ul a:hover {
  color: #f57c00;
  text-decoration: underline;
}

/* card for facilities */
.card-img-top-wrapper {
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.card-img-top {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-compact {
  background-color: #f0f8ff;
  border-radius: 12px;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.card-compact a {
  text-decoration: none;
  color: #007bff;
}
.card-compact a:hover {
  text-decoration: underline;
}
.card-icon {
  color: #dc3545;
  margin-right: 10px;
}