/* Main container styling */
.y002-table-container {
  max-width: 1800px;
  margin: auto;
  padding: 40px;
  background-color: #f9f9f9;
  font-family: 'Times New Roman', Times, serif;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading styling */
h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
p {
  text-align: left;
  color: #1e3888;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Regulations table styling */
.y002-regulations-table {
  border-collapse: collapse;
  margin-bottom: 20px;
  margin-left: 10px;
}

/* Table header styling */
.y002-regulations-table th {
  background-color: #343a40;
  color: white;
  padding: 15px;
  text-align: center;
  border: 2px solid #f8f2f3;
  font-weight: bold;
}

/* Table cell styling */
.y002-regulations-table td {
  padding: 5px;
  border: 1px solid #0e0f10;
  color: #343a40;
}

/* Select dropdown styling */
.y002-regulations-table select {
  padding: 5px;
  margin-left: 10px;
  margin-top: 10px;
  border: 1px solid #330a4e;
  border-radius: 4px;
  background-color: #f8f9fa;
  color: #495057;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.y002-regulations-table select:hover {
  background-color: #e2e6ea;
}

/* Table row hover effect */
.y002-regulations-table tr:hover {
  background-color: #f1f3f5;
}

/* Download button styling */
.y002-download-btn {
  display: flex;
  align-items: center;
  background-color: #7b90a7;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect for download button */
.y002-download-btn:hover {
  background-color: #97a3af;
  transform: scale(1.05);
}

/* Download logo inside button */
.y002-download-logo {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Link styling */
.y002-download-link {
  text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .y002-regulations-table {
    font-size: 14px;
  }

  .y002-download-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .y002-table-container {
    padding: 20px;
  }

  .y002-regulations-table select {
    width: 100%;
    margin: 10px 0;
  }
}
