.content {
  font-family: 'Barlow', sans-serif;
}

  #venuesHeading {
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
  }

  #venuesSubheading {
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 57.01px;
    letter-spacing: -0.6px;
  }

  #venuesSubheading span {
    color: #0D97E9;
  }


  #venuesGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #sliderHeading {
    font-size: 2rem;
    text-align: center;
  }

  #sliderSubheading {
    font-size: 2rem;
    text-align: center;
    color: #555;
  }

  venue-item {
    flex-basis: 24%;
    margin-bottom: 20px;
  }

  .venue-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px
  }
 



  .venue-item {
    position: relative;
    overflow: hidden;
  }

  .venue-item:hover {
    color: #007bff;
  }


  .court-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
  }

.court-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.court-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.court-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.court-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.court-card:hover .court-image-container img {
  transform: scale(1.05);
}

.court-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.available {
  background-color: rgba(46, 213, 115, 0.9);
  color: white;
}

.status-badge.not-available {
  background-color: rgba(255, 71, 87, 0.9);
  color: white;
}

.court-card-body {
  padding: 1.25rem;
}

.court-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.court-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Barlow', sans-serif;
}
.court-status {
  margin-left: auto;
}

.court-type {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #636e72;
}

.court-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #636e72;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.detail-item:hover {
  background-color: #e9ecef;
}

.detail-item .material-symbols-outlined {
  font-size: 1.2rem;
}

.text-primary {
  color: #0984e3 !important;
}

.pricing-section {
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price-row:last-child {
  margin-bottom: 0;
}

.price-item.wholesale {
  color: #00b894;
}

.price-label {
  font-size: 1rem;
  color: #636e72;
}

.price-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: #2d3436;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL'1, 'wght'400, 'GRAD'0, 'opsz'24;
}

.get-directions {
  color: white;
  text-decoration: none;
}
.available {
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #43A046;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  color: #ffffff;
}
.not-available {
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #6c757d;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  color: #ffffff;
}

.card-available {
  margin-right: 8px;
  margin-bottom: 8px;
  background-color: #43A046;
  padding: 6px 12px;
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 0.85rem;
}
.card-not-available {
  margin-right: 8px;
  margin-bottom: 8px;
  background-color: #6c757d;
  padding: 6px 12px;
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 0.85rem;
}
.contact-info {
  padding: 0.5rem 0;
}

.venue-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.d-inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.material-symbols-outlined {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .venue-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .d-inline-flex {
    width: 100%;
  }
}

.venue-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
}

.venue-card .court-card-body {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Modern Booking & Reservations Section */
.modern-booking-section {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.modern-booking-section:last-child {
  margin-bottom: 0;
}

.section-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  color: #0D97E9;
  font-size: 1.5rem;
}

.section-subtitle {
  color: #64748b;
  margin: 0;
  font-size: 1rem;
}

/* Calendar Container */
.calendar-container {
  padding: 1.5rem;
  background: white;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.4rem 0;
}

.calendar-subtitle {
  color: #64748b;
  margin: 0;
  font-size: 0.85rem;
}

.calendar-navigation {
  display: flex;
  gap: 0.75rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-btn:hover {
  border-color: #0D97E9;
  color: #0D97E9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(13, 151, 233, 0.15);
}

/* Calendar Grid */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.day {
  aspect-ratio: 1;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.day:hover {
  border-color: #0D97E9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(13, 151, 233, 0.1);
}

.day.selected {
  background: linear-gradient(135deg, #0D97E9, #00d4ff);
  border-color: #0D97E9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 151, 233, 0.25);
}

.day.selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.day-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.day-number {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Bookings Details */
.bookings-details {
  padding: 0 1.5rem 1.5rem;
}

.detail-section {
  margin-bottom: 1.5rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.section-header-mini {
  margin-bottom: 1.25rem;
}

.section-title-mini {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title-mini i {
  font-size: 1.1rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
}

.section-description {
  color: #64748b;
  margin: 0;
  font-size: 0.9rem;
}

/* Items Container */
.items-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.booking-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0D97E9, #00d4ff);
}

.reservation-item::before {
  background: linear-gradient(180deg, #f59e0b, #fbbf24);
}

.confirmed-booking::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.booking-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.time-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.time-info i {
  color: #64748b;
  font-size: 1rem;
}

.time-range {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-paid {
  background: #d1fae5;
  color: #065f46;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-refunded {
  background: #e0e7ff;
  color: #3730a3;
}

.status-paid_to_manager {
  background: #dbeafe;
  color: #1e40af;
}

/* Item Details */
.item-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.detail-label {
  font-weight: 500;
  color: #64748b;
  font-size: 0.9rem;
}

.detail-value {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
}

.detail-value.price {
  color: #0D97E9;
  font-weight: 700;
}

.detail-value.identifier {
  color: #64748b;
  font-family: 'Courier New', monospace;
}

.detail-value.text-success {
  color: #10b981;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 2rem 1.5rem;
  color: #94a3b8;
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.empty-state p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header,
  .calendar-container,
  .bookings-details {
    padding: 1.5rem;
  }
  
  .calendar-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .calendar {
    gap: 0.75rem;
  }
  
  .day {
    border-radius: 0.75rem;
  }
  
  .day-name {
    font-size: 0.7rem;
  }
  
  .day-number {
    font-size: 1rem;
  }
  
  .booking-item {
    padding: 1.25rem;
  }
  
  .item-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@media (max-width: 576px) {
  .section-header,
  .calendar-container,
  .bookings-details {
    padding: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .calendar {
    gap: 0.5rem;
  }
  
  .day {
    border-radius: 0.5rem;
    padding: 0.5rem;
  }
  
  .day-name {
    font-size: 0.65rem;
  }
  
  .day-number {
    font-size: 0.9rem;
  }
  
  .booking-item {
    padding: 1rem;
  }
  
  .time-range {
    font-size: 1rem;
  }
  
  .status-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* Enhanced Spacing for Section Content */
.bookings-details {
  padding: 1.5rem;
}

.bookings-details.mt-3 {
  margin-top: 1rem !important;
}

.detail-section:first-child {
  margin-top: 0;
}

.detail-section {
  margin-bottom: 1.5rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

/* Ensure consistent spacing between sections */
.modern-booking-section + .modern-booking-section {
  margin-top: 2rem;
}

/* Enhanced section header spacing */
.section-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.section-header .section-title {
  margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
  margin-bottom: 0;
  line-height: 1.4;
}

/* Vacation Detail Item Styling */
.vacation-detail-item::before {
  background: linear-gradient(180deg, #f59e0b, #fbbf24);
}

.vacation-detail-item .item-header .status-badge.status-danger {
  background-color: #dc3545;
  color: white;
}

.vacation-detail-item .item-header .status-badge.status-warning {
  background-color: #ffc107;
  color: #212529;
}

.vacation-detail-item .item-header .status-badge.status-info {
  background-color: #17a2b8;
  color: white;
}

/* Enhanced vacation item styling */
.vacation-detail-item .item-details .detail-row {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.vacation-detail-item .item-details .detail-row:last-child {
  border-bottom: none;
}

.vacation-detail-item .detail-label {
  font-weight: 600;
  color: #495057;
  min-width: 100px;
}

.vacation-detail-item .detail-value {
  color: #212529;
  font-weight: 500;
}

/* Reservation Button Styling - Using existing theme */
.reservation-btn {
  margin-left: 10px;
  transition: all 0.3s ease;
}

.reservation-btn:hover {
  text-decoration: none;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 151, 233, 0.3);
}

.reservation-btn i {
  font-size: 1.1rem;
}

/* Ensure proper spacing between buttons */
.status .directions + .reservation-btn {
  margin-left: 1rem;
}
