/* Booking Calendar Section */
.gpt-booking-calendar-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
}

#site-header, #site-footer, .page-header  {
  display:none !important
}

.gpt-booking-header {
  padding: 32px;
  background: linear-gradient(135deg, var(--gpt-primary-color, #667eea) 0%, var(--gpt-secondary-color, #764ba2) 100%);
}

.gpt-booking-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gpt-booking-icon {
  flex-shrink: 0;
}

.gpt-booking-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.gpt-booking-subtitle {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.gpt-booking-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  padding: 32px;
}

.gpt-booking-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gpt-booking-filters-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gpt-filter-card {
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}

/* Add gradient background to booking section headers */
.gpt-filter-card label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--gpt-primary-color, #667eea) 0%, var(--gpt-secondary-color, #764ba2) 100%);
  border-radius: 12px 12px 0 0;
  margin: -20px -20px 16px -20px;
}

.gpt-filter-card label svg {
  color: white;
}

.gpt-modern-date-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  background: white;
}

.gpt-modern-date-input:focus {
  outline: none;
  border-color: var(--gpt-primary-color, #667eea);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Trainer Selector */
.gpt-trainer-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.gpt-trainer-card {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  position: relative;
}

.gpt-trainer-card:hover {
  border-color: var(--gpt-primary-color, #667eea);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.gpt-trainer-card.selected {
  border-color: var(--gpt-primary-color, #667eea);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.gpt-trainer-card.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: var(--gpt-primary-color, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.gpt-trainer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid #e5e7eb;
}

.gpt-trainer-card.selected .gpt-trainer-avatar {
  border-color: var(--gpt-primary-color, #667eea);
}

.gpt-trainer-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.gpt-trainer-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--gpt-primary-color, #667eea) 0%, var(--gpt-secondary-color, #764ba2) 100%);
  color: white;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gpt-trainer-loading,
.gpt-session-type-loading {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
}

/* Session Type Selector */
.gpt-session-type-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.gpt-session-type-card {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.gpt-session-type-card:hover {
  border-color: var(--gpt-primary-color, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.gpt-session-type-card.selected {
  border-color: var(--gpt-primary-color, #667eea);
  border-width: 4px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.gpt-session-type-card.selected::after {
  content: "✓";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: var(--gpt-primary-color, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.gpt-session-type-color {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gpt-session-type-card:hover .gpt-session-type-color {
  transform: scale(1.05);
}

.gpt-session-type-info {
  flex: 1;
}

.gpt-session-type-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px 0;
}

.gpt-session-type-details {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.gpt-session-type-detail {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Category Selector - Similar to trainer selector but adapted for categories */
.gpt-category-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.gpt-category-card {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gpt-category-card:hover {
  border-color: var(--gpt-primary-color, #667eea);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.gpt-category-card.selected {
  border-color: var(--gpt-primary-color, #667eea);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.gpt-category-card.selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: var(--gpt-primary-color, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.gpt-category-name {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.gpt-category-description {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.gpt-category-loading {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
}

.gpt-session-type-card-selector {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.gpt-session-type-card-selector:hover {
  border-color: var(--gpt-primary-color, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.gpt-session-type-card-selector.selected {
  border-color: var(--gpt-primary-color, #667eea);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.gpt-session-type-card-selector.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: var(--gpt-primary-color, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.gpt-session-type-trainer {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-top: 4px;
}

/* Added mobile responsive styles for booking section */
/* More aggressive mobile responsive styles to prevent cutoff */
@media (max-width: 768px) {
  .gpt-booking-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .gpt-booking-header {
    padding: 20px 16px;
  }

  .gpt-booking-header h2 {
    font-size: 24px;
  }

  .gpt-booking-subtitle {
    font-size: 14px;
  }

  .gpt-filter-card {
    padding: 16px;
  }

  .gpt-filter-card label {
    padding: 12px 16px;
    margin: -16px -16px 12px -16px;
    font-size: 11px;
  }

  .gpt-trainer-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gpt-trainer-card {
    padding: 12px;
  }

  .gpt-trainer-avatar {
    width: 60px;
    height: 60px;
  }

  .gpt-booking-calendar-section {
    margin-bottom: 24px;
  }

  .gpt-booking-icon {
    width: 40px;
    height: 40px;
  }

  .gpt-category-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gpt-category-card {
    padding: 16px 12px;
  }

  .gpt-category-name {
    font-size: 14px;
  }

  .gpt-category-description {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .gpt-booking-container {
    padding: 12px;
    gap: 12px;
  }

  .gpt-booking-header {
    padding: 16px 12px;
  }

  .gpt-booking-header h2 {
    font-size: 20px;
  }

  .gpt-booking-subtitle {
    font-size: 13px;
  }

  .gpt-booking-calendar-section {
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .gpt-filter-card {
    padding: 12px;
  }

  .gpt-filter-card label {
    font-size: 10px;
    margin: -12px -12px 12px -12px;
    padding: 10px 12px;
    gap: 6px;
  }

  .gpt-trainer-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gpt-trainer-card {
    padding: 10px;
  }

  .gpt-trainer-avatar {
    width: 50px;
    height: 50px;
  }

  .gpt-trainer-name {
    font-size: 13px;
  }

  .gpt-booking-header-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .gpt-booking-icon {
    width: 36px;
    height: 36px;
  }

  .gpt-category-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gpt-category-card {
    padding: 14px 10px;
  }

  .gpt-category-name {
    font-size: 13px;
  }

  .gpt-category-description {
    font-size: 10px;
  }
}
