.sundrejse-priser {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.sundrejse-priser thead {
  background-color: #f8f8f8;
}

.sundrejse-priser th,
.sundrejse-priser td {
  border: 1px solid #e1e1e1;
  padding: 12px;
  text-align: left;
}

.sundrejse-priser th {
  font-weight: 600;
}

.sundrejse-priser tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.sundrejse-priser a {
  color: #0073aa;
  text-decoration: none;
}

.sundrejse-priser a:hover {
  text-decoration: underline;
}

table.sundrejse-priser {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .sundrejse-priser thead {
    display: none;
  }
  .sundrejse-priser tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  .sundrejse-priser td {
    display: block;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .sundrejse-priser td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #555;
  }
  .sundrejse-priser td:last-child {
    border-bottom: none;
  }
}