.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: 0.6rem;
}

.cms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background-color: #fff;
  min-width: 700px;
}

.cms-table th,
.cms-table td {
  border: 1px solid #ddd;
  padding: 0.6rem;
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
}

.cms-table th {
  background-color: #0a66c2;
  color: #fff;
  font-weight: 600;
}

.cms-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.cms-table tr:hover {
  background-color: #f1f7ff;
}

.cms-table a {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

.cms-table a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .table-wrapper {
    border: 1px solid #ddd;
    border-radius: 0.6rem;
  }

  .cms-table {
    font-size: 0.85rem;
    min-width: 600px;
  }

  .cms-table th,
  .cms-table td {
    padding: 0.45rem;
  }
}
