body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f3f5;
  color: #0f172a;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.topbar {
  margin-bottom: 16px;
}

.topbar h1 {
  margin-bottom: 4px;
}

.topbar h2 {
  margin-bottom: 10px;
  font-weight: normal;
  opacity: 0.85;
}

.eventLine {
  font-size: 0.95rem;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.disclaimer {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #475569;
}

.emptyMessage {
  color: #475569;
  font-size: 1rem;
}

.toolbar input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  padding-right: 52px;
  font-size: 1.1rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  min-height: 52px;
}

.clearBtn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  padding: 0;
}

.clearBtn:hover {
  background: #cbd5e1;
}

.items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.itemCard {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.itemId {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.itemDescription {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.itemPrice {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 640px) {
  .wrap {
    padding: 14px;
  }

  .topbar h1 {
    font-size: 1.8rem;
  }

  .toolbar input {
    font-size: 1rem;
  }
}