.page-header {
  position: relative;
  overflow: hidden;
}

.page-header video.bg--cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* .report-card {
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.report-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.7;
}

.report-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #000;
  background: #fff;
  opacity: 0.7;
} */

.report-card {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
}


.report-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
}



.report-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px; /* fixed height */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white */
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}




.report-date {
  font-size: 14px;
  margin-bottom: 10px;
}
/* 
.report-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
} */

.report-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
}

.report-modal .modal-content
{
  background: #E9EFF7;
}

/* Complaint Status Section Styles */
.complaint-status-section {
  background: var(--bg-color-3, #fff);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px 0;
}


.complaint-status-section h2 span
{
  color: #007f00;
}

.complaint-status-section .subtitle {
  font-size: 1.15rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 0;
}

#complaint-status-period.form-select {
  border-radius: 8px;
  border: 1px solid var(--border-color, #E6EDFB);
  background: #fff;
  color: #222;
  font-weight: 500;
  padding: 8px 16px;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: border-color 0.2s;
}

#complaint-status-period:focus {
  border-color: var(--brand-color, #007f00);
  outline: none;
}

#complaint-status-table-wrap {
  margin-top: 24px;
}

.complaint-status-section .table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.complaint-status-section table.table {
  margin-bottom: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

.complaint-status-section thead.table-light th {
  background: var(--tertiary-color3, #f5f7fc);
  /* color: var(--brand-color, #007f00); */
  font-weight: 400;
  font-size: 1rem;
  border-bottom: 2px solid var(--border-color, #E6EDFB);
  text-align: center;
}

.complaint-status-section thead.table-light th:first-child {
  text-align: left;
}

.complaint-status-section tbody tr {
  font-size: 1rem;
  color: #222;
  text-align: center;
  vertical-align: middle;
}

.complaint-status-section tbody tr td:first-child {
  text-align: left;
  font-weight: 500;
  /* color: var(--brand-color, #007f00); */
}

.complaint-status-section tbody tr:last-child {
  background: var(--tertiary-color3, #f5f7fc);
  font-weight: bold;
  color: #222;
}

.complaint-status-section table th,
.complaint-status-section table td {
  padding: 12px 16px;
  border: none;
}

@media (max-width: 767px) {
  .complaint-status-section {
    padding: 24px 0;
  }
  .complaint-status-section h2 {
    font-size: 1.3rem;
  }
  .complaint-status-section .subtitle {
    font-size: 1rem;
  }
  #complaint-status-period.form-select {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 6px 10px;
  }
  .complaint-status-section table th,
  .complaint-status-section table td {
    padding: 8px 8px;
    font-size: 0.95rem;
  }
  /* Add horizontal scroll for table on mobile */
  .complaint-status-section .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .complaint-status-section table {
    min-width: 600px;
  }
}
