* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  margin-bottom: 4px;
}

.subtitle {
  margin-top: 0;
  color: #666;
}

.filters {
  margin: 24px 0;
}

input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

th {
  background: #222;
  color: white;
}

tr:hover td {
  background: #fafafa;
}

@media (max-width: 700px) {
  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 14px;
    background: white;
    border-radius: 12px;
    padding: 12px;
  }

  td {
    border-bottom: none;
    padding: 6px 0;
  }

  td::before {
    content: attr(data-label) ": ";
    font-weight: bold;
  }
}