/* 
 * Reports Page Styles
 * Contains all styles specific to the reports listing page
 */

/* Reports hero section */
.reports-hero {
  background-color: #f8f9fa;
  padding: 5rem 0;
  text-align: center;
}

.reports-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.reports-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* Reports listing section */
.reports-listing {
  padding: 5rem 0;
}

/* Report card */
.card {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100% !important;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Card content */
.card .blogheading {
  color: #0056b3;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card .card-blog-type {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/* Download button */
.card .btn-primary {
  background-color: #0056b3;
  border: none;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.card .btn-primary:hover {
  background-color: #003d82;
}

.card .btn-primary i {
  margin-right: 0.25rem;
}

.reports-listing .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100% ;
}

.reports-listing .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0056b3;
  flex-grow: 1;
}

.reports-listing .card-text {
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.reports-listing .card-footer {
  background: none;
  border-top: 1px solid #e9ecef;
  padding: 1rem 1.5rem;
  margin-top: auto;
}

.report-type {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.reports-listing .btn-download {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.reports-listing .btn-download:hover {
  background-color: #003d82;
  color: white;
}

.reports-listing .btn-download i {
  margin-right: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .reports-listing .card {
    margin-bottom: 1.5rem;
  }
  
  .reports-listing .card-img-top {
    height: 180px;
  }
}

/* Pagination */
.reports-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.reports-pagination .page-item.active .page-link {
  background-color: #0056b3;
  border-color: #0056b3;
}

.reports-pagination .page-link {
  color: #0056b3;
}
