* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #ff9ff3 100%);
  min-height: 100vh;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 3em;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1em;
  color: #7f8c8d;
  font-weight: 400;
}

.store-section {
  margin-bottom: 8px;
}

.store-header {
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1.5px solid #000;
  padding-bottom: 1px;
  margin-bottom: 4px;
}

.region-section {
  margin-bottom: 5px;
  break-inside: avoid;
}

.region-header {
  font-weight: bold;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 2px;
}

.item {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  line-height: 1.4;
  break-inside: avoid;
}

.checkbox {
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  margin-right: 4px;
  flex-shrink: 0;
}

.item-content {
  flex: 1;
  display: flex;
  align-items: baseline;
}

.item-name {
  font-weight: normal;
  color: #000;
}

.item-count {
  flex: 1;
  margin-left: 4px;
  height: 9px;
  min-width: 20px;
}

.item-note {
  flex: 1;
  margin-left: 4px;
  height: 9px;
  min-width: 20px;
}

.blank-item {
  border-bottom: 1px solid #ccc;
  min-height: 12px;
}
