/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: #1a73e8;
  color: #ffffff;
}

thead th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

tbody td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

tbody tr:hover {
  background-color: #f1f7ff;
}

/* Remove default table border */
table,
th,
td {
  border: none;
}

/* List Styling */
ul {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

ul li {
  margin-bottom: 10px;
}

/* Links */
a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tbody tr {
    margin-bottom: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  }

  tbody td {
    border: none;
    padding: 8px 0;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    color: #1a73e8;
    margin-bottom: 3px;
  }
}
