/* Custom styles for Availability Notifier */

body {
  min-height: 100vh;
}

.text-truncate {
  max-width: 300px;
}

/* Add some animation for new items */
@keyframes highlight {
  0% {
    background-color: rgba(13, 110, 253, 0.1);
  }
  100% {
    background-color: transparent;
  }
}

#notifiers > div:first-child {
  animation: highlight 2s ease;
}

/* Landing page styles */
.landing-page .hero-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
  border-radius: 0 0 2rem 2rem;
}

.landing-page .features-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-page .features-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.landing-page .cta-section {
  border-radius: 2rem;
  margin: 0 1rem;
}

/* Pricing page styles */
.pricing-page .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-page .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.pricing-page .card-header {
  border-radius: 0.375rem 0.375rem 0 0 !important;
  min-height: 6rem; /* Ensure equal height for all card headers */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-page .faq-section .accordion-button:not(.collapsed) {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  box-shadow: none;
}

/* Center aligned list items in pricing cards */
.pricing-page ul.text-center li {
  display: flex;
  justify-content: center;
  align-items: center;
} 