* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #222;
  padding: 40px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #0d47a1;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

caption {
  caption-side: top;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #444;
}

thead {
  background: #1565c0;
  color: white;
}

th,
td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

tbody tr:nth-child(even) {
  background: #f9f9f9;
}

tbody tr:hover {
  background: #e3f2fd;
  transition: 0.3s;
}

.break-row td {
  background: #ffe082;
  font-weight: bold;
}

.break-row th {
  background: #ffca28;
}

@media (max-width: 768px) {
  table {
    font-size: 14px;
  }

  th,
  td {
    padding: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }
}
