.table-type-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0 20px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: start;
}

.table-status-btn.pending_payment {
    color: black;
}

.table-type-tab {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  min-width: max-content;
}

.table-type-tab:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  border-color: rgba(0, 0, 0, 0.3);
}

.table-type-tab.active {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.table-type-tab.active:hover {
  background: #45a049;
  border-color: #45a049;
}

/* Bar seating specific styles */
.bar-seats-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.bar-seats-title {
  color: #FFB74D;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seat-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.seat-button {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat-button:hover {
  border-color: #4CAF50;
  color: white;
  background: rgba(76, 175, 80, 0.2);
}

.seat-button.selected {
  background: #4CAF50;
  border-color: #4CAF50;
  color: white;
}

.seat-button.reserved {
  background: rgba(244, 67, 54, 0.3);
  border-color: #F44336;
  color: #F44336;
  cursor: not-allowed;
}

.seat-button.reserved:hover {
  background: rgba(244, 67, 54, 0.3);
  border-color: #F44336;
  color: #F44336;
}

.seats-summary {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  border-left: 3px solid #4CAF50;
}

.seats-summary-text {
  color: #4CAF50;
  font-size: 14px;
  font-weight: 500;
}

.seats-error {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 8px;
  border-left: 3px solid #F44336;
}

.seats-error-text {
  color: #F44336;
  font-size: 14px;
  font-weight: 500;
}

/* Table grid updates for types */
.table-type-header {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 16px 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.table-type-header:first-child {
  margin-top: 8px;
}

.table-type-badge {
  background: #4CAF50;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  border: 2px solid #45a049;
}

.bar-seating-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #FFB74D;
  margin-top: 4px;
}

.available-seats-count {
  color: #4CAF50;
  font-weight: 600;
}
