.btn-pastel-blue {
  background-color: #a8d8ea;
  border-color: #a8d8ea;
  color: #333;
}

.btn-pastel-blue:hover {
  background-color: #8cc9e0;
  border-color: #8cc9e0;
  color: #333;
}

.hero-section {
  background: linear-gradient(135deg, #ffeef8 0%, #fff5f7 50%, #e8f5ff 100%);
  min-height: 600px;
}

.btn-pastel-pink {
  background-color: #ffb3d9;
  border-color: #ffb3d9;
  color: #333;
}

.btn-pastel-pink:hover {
  background-color: #ff99cc;
  border-color: #ff99cc;
  color: #333;
}

.badge-pastel {
  background-color: #ffd4e5;
  color: #d63384;
}

.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.card {
  transition: transform 0.3s ease;
}

.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffb3d9, #ff99cc);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
  max-width: 350px;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
}

.notification-close:hover {
  opacity: 1;
}
