/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Enhanced Header Styles */
.header {
  text-align: center;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.logo img {
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.logo-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 1px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.subtitle {
  font-size: 1.3rem;
  color: #666;
  font-weight: 400;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.main-h2 {
  font-size: 2rem;
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.main-h2 i {
  font-size: 1.8rem;
}

/* Main Content */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Enhanced Event Info Section */
.event-info h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event-card.featured::before {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.event-card.featured .event-icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.event-icon i {
  font-size: 1.8rem;
  color: white;
}

.event-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.event-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-highlights,
.location-details,
.time-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-tag,
.location-tag,
.time-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.event-card.featured .highlight-tag {
  background: rgb(34 201 152 / 17%);
  color: #20c997;
  /* linear-gradient(135deg, #28a745 0%, #20c997 100%) */
}

/* Enhanced Validation Section */
.validation-section {
}

.validation-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(10px);
}

.validation-header h2 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.validation-header p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Enhanced Form Styles */
.validation-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 15px;
  color: #667eea;
  font-size: 1.1rem;
  z-index: 2;
}

.input-group input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.input-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.input-group input::placeholder {
  color: #999;
}

.input-validation {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

/* Enhanced Button Styles */
.btn-search {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-search:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-search:active {
  transform: translateY(-1px);
}

.btn-search:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

.text-dark {
  color: #333;
}

.text-center {
  text-align: center;
}

/* Enhanced Result Section */
.result-section {
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}

.result-section.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 1px solid #c3e6cb;
  color: #155724;
}

.result-section.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.result-section.loading {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.result-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.result-message {
  font-weight: 500;
  font-size: 1rem;
}

/* Enhanced Footer */
.footer {
  text-align: center;
  color: white;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Enhanced User Info Section */
.user-info-section {
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}

.user-info-card {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.user-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar i {
  font-size: 1.5rem;
}

.user-header-text h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.user-header-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.user-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 10px;
}

.detail-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1rem;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.detail-value {
  font-size: 1rem;
  font-weight: 500;
}

/* Enhanced Payment Summary */
.payment-summary {
  animation: slideIn 0.3s ease;
}

.summary-header h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.summary-details {
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #e1e5e9;
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.summary-item span:first-child {
  color: #ffffff;
}

.summary-item span:last-child {
  color: #ffffff;
  font-weight: 500;
}

/* Enhanced Payment Button */
.btn-payment {
  width: 100%;
  padding: 15px;
  background: linear-gradient(169deg, #000000 0%, #ffffff 119%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-payment-without-payment {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff5b5b 0%, #ff7e7e 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-payment:hover,
.btn-payment-without-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-payment-without-payment:hover,
.btn-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 91, 91, 0.4);
}

.btn-payment-without-payment:active,
.btn-payment:active {
  transform: translateY(0);
}

.btn-payment-without-payment i,
.btn-payment i {
  font-size: 1rem;
}

/* Enhanced Payment Processing */
.payment-processing-section {
  margin-top: 30px;
  text-align: center;
  animation: slideIn 0.3s ease;
}

.processing-content {
  background: #f8f9fa;
  padding: 40px 20px;
  border-radius: 12px;
  border: 2px solid #e1e5e9;
}

.processing-icon {
  margin-bottom: 20px;
}

.processing-icon i {
  font-size: 3rem;
  color: #667eea;
}

.processing-content h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.processing-content p {
  color: #666;
  font-size: 1rem;
}

.processing-steps {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.step i {
  font-size: 1.2rem;
  color: #667eea;
}

.step span {
  font-size: 0.8rem;
  color: #666;
}

.step.active i {
  color: #28a745;
}

.step.active span {
  color: #28a745;
}

/* Enhanced Booking Details Section */
.booking-details-section {
  margin-top: 20px;
  animation: slideIn 0.3s ease;
}

.booking-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.booking-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-icon i {
  font-size: 1.5rem;
  color: #28a745;
}

.booking-header-text h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.booking-header-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.booking-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 10px;
}

.booking-detail-item .detail-icon {
  background: rgba(255, 255, 255, 0.2);
}

.booking-detail-item .detail-icon i {
  font-size: 1rem;
}

.booking-detail-item .detail-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.booking-detail-item .detail-value {
  font-size: 1rem;
  font-weight: 500;
}

/* Enhanced Payment Plans Section */
.payment-plans-section {
  margin-top: 30px;
  animation: slideIn 0.3s ease;
}

.plans-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.plans-header h3 {
  color: #333;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.plans-header h3 i {
  font-size: 1.5rem;
}

.plans-header p {
  text-align: center;
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.plans-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.plan-card {
  background: white;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.plan-card.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.plan-icon {
  text-align: center;
  margin-bottom: 15px;
}

.plan-icon i {
  font-size: 2.5rem;
  color: #667eea;
}

.plan-card.selected .plan-icon i {
  color: white;
}

.plan-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.plan-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: center;
  opacity: 0.8;
}

.plan-price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.plan-price .currency {
  font-size: 1rem;
  vertical-align: top;
}

.plan-select {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plan-card.selected .plan-select {
  opacity: 1;
}

.plan-select i {
  color: white;
  font-size: 0.8rem;
}

/* Enhanced QR Code Section */
.qr-code-container {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.qr-header h4 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qr-header h4 i {
  font-size: 1.2rem;
}

.qr-content {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

.qr-code-wrapper {
  margin: 20px auto;
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
}

.qr-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
}

.qr-divider {
  margin: 20px 0;
  margin-bottom: 0px;
  text-align: center;
}

.qr-divider span {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  background: #f5fcfa;
  font-size: 0.9rem;
  color: #666;
}

.qr-divider span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e5e9;
  z-index: -1;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .container {
    padding: 15px;
  }

  .header {
    padding: 20px;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .logo i {
    font-size: 2rem;
  }

  .validation-card {
    padding: 30px 20px;
  }

  .event-card {
    padding: 15px;
  }

  .plans-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .plan-card {
    padding: 15px;
  }

  .user-info-card {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    flex-direction: column;
    gap: 10px;
  }

  .logo h1 {
    font-size: 1.8rem;
  }

  .validation-card {
    padding: 20px 15px;
  }

  .btn-search {
    padding: 12px;
    font-size: 1rem;
  }
}

/* Booking Options Section Styles */
.booking-options-section {
  margin-top: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.booking-options-header {
  text-align: center;
  margin-bottom: 30px;
}

.booking-options-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.booking-options-header h3 i {
  color: #667eea;
}

.booking-options-header p {
  color: #666;
  font-size: 1rem;
}

.booking-options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.booking-option-card {
  background: #fff;
  border: 2px solid #e1e5e9;
  border-radius: 15px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.booking-option-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.booking-option-card:active {
  transform: translateY(-2px);
}

.option-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.option-content {
  flex: 1;
}

.option-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.option-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.option-arrow {
  color: #667eea;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.booking-option-card:hover .option-arrow {
  transform: translateX(5px);
}

/* Payment History Check Button */
.btn-check-payment {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  width: 100%;
  justify-content: center;
}

.btn-check-payment:hover {
  background: linear-gradient(135deg, #218838, #1ea085);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-check-payment:active {
  transform: translateY(0);
}

/* Responsive Design for Booking Options */
@media (max-width: 768px) {
  .booking-options-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-option-card {
    padding: 20px;
    gap: 15px;
  }

  .option-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .option-content h4 {
    font-size: 1.1rem;
  }

  .option-content p {
    font-size: 0.9rem;
  }

  .booking-options-header h3 {
    font-size: 1.5rem;
  }
}

.event-slot-confirm-section{
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.event-slot-confirm-section .confirm-event-slot-btn{
  width: 100%;
  padding: 15px;
  background: linear-gradient(169deg, #09a26c 0%, #6df0aa 101%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}
