#notice-heading {
  display: none;
}
#notice-table {
  border: 2px solid #ccc;        /* Border around the table */
  padding: 15px;                  /* Padding inside the table */
  margin: 20px 0;                 /* Margin outside the table */
  background-color: #f9f9f9;     /* Light background color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for the table */
}
#notice-table table {
  width: 100%;                    /* Ensures the table stretches to fit inside the container */
  border-collapse: collapse;      /* Merges table borders */
}

#notice-table td {
  padding: 10px;                  /* Padding inside table cells */
  border: 1px solid #ddd;         /* Optional: adds a border around table cells */
}