
body {
  margin: 0;
  font-family: sans-serif;
  background: #fff8ea;
  color: #222;
}

.app {
  padding: 10px;
  max-width: 100%;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fef4d6;
  padding: 10px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.header h1 {
  font-size: 18px;
  margin: 0 10px;
  flex: 1;
  text-align: center;
}

.header .logo {
  width: 32px;
  height: 32px;
}

button {
  background: #ffca00;
  border: none;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  text-align: left;
  padding: 8px;
}

thead {
  background: #f5d97c;
}

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

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

td:last-child {
  text-align: right;
}
