/* Button Styles */
.button {
  padding: 12px 24px;
  background: white;
  color: #000000;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-primary {
  background: white;
  color: #000000;
  border-color: white;
}

.button-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.gpt-button-complete {
  background: #10b981;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gpt-button-complete:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.gpt-btn-cancel-booking {
  flex: 1;
  padding: 10px 16px;
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gpt-btn-cancel-booking:hover {
  background: #fecaca;
  border-color: #fca5a5;
  transform: translateY(-1px);
}
