.tap-dashboard {
  font-family: 'Google Sans', Arial, sans-serif;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: auto;
}
.tap-dashboard h2 {
  color: #1a73e8;
}
.tap-dashboard form,
.tap-dashboard table {
  width: 100%;
  margin-top: 15px;
}
.tap-dashboard input,
.tap-dashboard select,
.tap-dashboard button {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.tap-dashboard button {
  background: #1a73e8;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
.tap-dashboard button:hover {
  background: #0c5bd4;
}
.tap-dashboard table {
  border-collapse: collapse;
}
.tap-dashboard th, .tap-dashboard td {
  border: 1px solid #ddd;
  padding: 8px;
}
.tap-dashboard tr:nth-child(even) {
  background-color: #f1f1f1;
}
