/* styles.css */
body {
  background-color: #fafafa;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 4px solid #d1d1d1;
}

h1 {
  font-weight: 700;
  font-size: 3.5rem;
  margin: 0;
}

h2, h3 {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.table {
  background-color: #ffffff;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.table thead th {
  background-color: #f7f7f7;
  font-weight: 600;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.table tbody tr {
  border-bottom: 1px solid #eee;
}

.table tbody tr:last-child {
  border-bottom: none;
}

.table td {
  padding: 12px;
  vertical-align: middle;
}

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  border-top: 2px solid #d1d1d1;
  margin-top: 40px;
}

footer p {
  margin: 0;
}

/* Button style */
button {
  background-color: #343a40;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #495057;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  .table {
    font-size: 0.9rem;
  }
}
