/* Red Button */
.btn-red {
  background: linear-gradient(135deg, #e53935, #d32f2f);
}
.btn-red:hover {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

/* Green Button */
.btn-green {
  background: linear-gradient(135deg, #43a047, #388e3c);
}
.btn-green:hover {
  background: linear-gradient(135deg, #388e3c, #2e7d32);
}

/* Blue Button */
.btn-blue {
  background: linear-gradient(135deg, #1e88e5, #1976d2);
}
.btn-blue:hover {
  background: linear-gradient(135deg, #1976d2, #1565c0);
}

/* Theme Gradient Button */
.btn-theme {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}
.btn-theme:hover {
  background: linear-gradient(135deg, #4a00e0, #3f00c8);
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin-bottom: 40px;
}

/* Button base style */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  min-width: 150px;
}

/* Primary Button */
.btn-primary {
  background-color: #4a6bff;
  color: white;
  box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
}

.btn-primary:hover {
  background-color: #3a5bef;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
}

/* Secondary Button */
.btn-secondary {
  background-color: white;
  color: #4a6bff;
  border: 2px solid #4a6bff;
}

.btn-secondary:hover {
  background-color: #f0f4ff;
  transform: translateY(-2px);
}

/* Success Button */
.btn-success {
  background-color: #2ecc71;
  color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-success:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Danger Button */
.btn-danger {
  background-color: #e74c3c;
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  color: #333;
  border: 2px solid #ddd;
}

.btn-outline:hover {
  background-color: #f9f9f9;
  border-color: #bbb;
  transform: translateY(-2px);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(45deg, #4a6bff, #8e54e9);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #3a5bef, #7d44d9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
}

/* Icon Button */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Disabled Button */
.btn-disabled {
  background-color: #ddd;
  color: #999;
  cursor: not-allowed;
}

/* Small Button */
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  min-width: 120px;
}

/* Large Button */
.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
  min-width: 180px;
}

/* Button with shadow */
.btn-shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button with hover effect */
.btn-hover-effect:hover {
  transform: scale(1.05);
}