
/* Additional custom styles that might not be covered by Tailwind */

/* Position styles for the entry point checkboxes */
.entry-point-checkbox {
  min-width: 1.2rem;
}

/* Animation for loading state */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* AdminLTE inspired styles */
.nav-link.active {
  background-color: #e0f2fe;
  color: #2563eb;
  font-weight: 500;
}

.dashboard-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Settings panel styles */
.settings-card {
  transition: border-color 0.2s;
}

.settings-card:hover {
  border-color: #93c5fd;
}

/* Toast notification styles */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 50;
  max-width: 24rem;
  overflow: hidden;
}

.toast-success {
  border-left: 4px solid #10b981;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-info {
  border-left: 4px solid #3b82f6;
}

.toast-warning {
  border-left: 4px solid #f59e0b;
}

/* Enhanced form styles */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-section-header {
  position: relative;
}

.form-section-header:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #3b82f6;
  border-radius: 1.5px;
}

/* Hero section animation */
.hero-section h1, .hero-section p {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover effects */
.booking-form-container {
  transition: transform 0.3s, box-shadow 0.3s;
}

.booking-form-container:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button animation */
button[type="submit"] {
  position: relative;
  overflow: hidden;
}

button[type="submit"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button[type="submit"]:hover::after {
  width: 300%;
  height: 300%;
}
