/* Booking system styles */
.booking-selector {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  .booking-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .booking-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .service-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .service-card.selected {
    border: 2px solid #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.3);
  }
  
  .service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
  }
  
  .service-details {
    padding: 20px;
  }
  
  .service-details h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .service-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4a5568;
  }
  
  .service-details p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .select-btn {
    background-color: #3182ce;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .select-btn:hover {
    background-color: #2c5282;
  }
  
  .calendar-header {
    margin-bottom: 20px;
  }
  
  .calendar-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  
  .calendar-header p {
    color: #4a5568;
    margin-bottom: 15px;
  }
  
  .back-btn {
    background-color: #e2e8f0;
    color: #2d3748;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .back-btn:hover {
    background-color: #cbd5e0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .service-cards {
      grid-template-columns: 1fr;
    }
  }