.drink-table-page {
  padding: 0 1.5rem 2rem;
}

.drink-table-title {
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.drink-table {
  width: 100%;
  max-width: 30rem;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.drink-table th {
  text-align: left;
  font-size: 0.8rem;
  color: #6c757d;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #eee;
}

.drink-table td {
  padding: 0.5rem 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.drink-table tr:last-child td {
  border-bottom: none;
}

.drink-table-leader td {
  background: #fff6e0;
  font-weight: 600;
}

.drink-table-count {
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.drink-table-actions {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}

.drink-table-btn {
  min-width: 2.2rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f0f0f0;
  color: #333;
  cursor: pointer;
  font-size: 0.85rem;
}

.drink-table-btn:hover:not(:disabled) {
  background: #e0e0e0;
}

.drink-table-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.drink-table-btn--plus {
  background-image: linear-gradient(90deg, rgb(5, 39, 103) 0%, #3a0647 70%);
  border: none;
  color: white;
}

.drink-table-btn--plus:hover {
  opacity: 0.9;
}

.drink-table-muted {
  color: #6c757d;
  font-size: 0.85rem;
}

@media (max-width: 640.98px) {
  .drink-table-page {
    padding: 0 1rem 2rem;
  }

  .drink-table {
    max-width: 100%;
  }
}
