/* Custom styles for reports cards */

/* Enhanced Report Card Styling */
.reports-section .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.reports-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.reports-section .card-body {
  padding: 1.5rem;
}

/* Report Card Status Styling */
.reports-section .card.border-success {
  border-left-width: 4px !important;
}

.reports-section .card.border-light {
  border-left-width: 4px !important;
}

/* Report Card Badge Styling */
.reports-section .badge {
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.reports-section .badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Report Actions Count Styling */
.reports-section .actions-count {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Report Link Styling */
.reports-section .report-link {
  display: inline-block;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.reports-section .report-link:hover {
  background-color: rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}