* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f0f4f8, #ffffff);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  background-color: #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: none;
  padding: 20px 40px;
  width: 100%;
}

h1 {
  color: #00796b;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-bar input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-bar button {
  padding: 10px 14px;
  font-size: 16px;
  background-color: #e57373;
  color: white;
}

.highlight {
  background-color: #c8eabb !important;
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: auto;
}

.table-wrapper {
  overflow-x: auto;
}

thead th {
  white-space: nowrap;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
}

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

tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

tbody tr:hover {
  background-color: #c8e6e9;
}