/* Annual Reports Start */
/* Smooth entrance animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#annual_reports {
  margin: 50px 0px;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out both;
}

#annual_reports .table_container {
  width: 100%;
  max-width: 1100px;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 64, 32, 0.1);
  border: 1px solid var(--table-bg-green);
  animation: fadeInUp 0.6s ease-out both;
  box-sizing: border-box;
}

.table_container .report_table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  border: 1px solid var(--green-color-2);
}

.table_container .report_table .report_table_head th {
  border: 1px solid var(--green-color-2);
  padding: 14px 18px;
  background-color: var(--green-color-2);
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  font-family: var(--secondary-font);
}

.table_container .report_table .report_table_row {
  background-color: #eaf7eb;
  transition: background-color 0.3s ease;
}

.table_container .report_table .report_table_row:hover {
  background-color: #d7f0da;
}

.report_table .report_table_row .report_table_cell {
  padding: 14px 18px;
  text-align: center;
  font-size: 15px;
  color: var(--black);
  border: 1px solid #cce6cc;
  word-break: break-word;
}

.report_table .report_table_row .report_table_cell .attachment_link {
  color: var(--green-color-2);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.report_table .report_table_row .file_type,
.report_table .report_table_row .file_size {
  font-weight: 500;
  font-size: 14px;
  user-select: none;
}

.report_table .report_table_row .report_table_cell .download_btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.report_table .report_table_row .report_table_cell .download_btn:hover {
  display: inline-block;

  background: var(--primary-color);
}

@media (max-width: 768px) {
  #annual_reports {
    padding: 20px 10px;
  }

  #annual_reports .table_container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table_container .report_table {
    min-width: 600px;
    font-size: 14px;
    border-collapse: collapse;
  }

  .table_container .report_table .report_table_head th,
  .report_table_cell {
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .report_table .report_table_row .report_table_cell .download_btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .report_table .report_table_row .report_table_cell .attachment_link {
    font-size: 14px;
    color: #2e7d32;
    text-decoration: none;
  }

  .report_table .report_table_row .report_table_cell .attachment_link:hover {
    text-decoration: underline;
  }

}

/* Annual Reports End */