/* Calendar Styles */
.gpt-custom-calendar {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}


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

.gpt-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--gpt-primary-color, #667eea) 0%, var(--gpt-secondary-color, #764ba2) 100%);
  color: white;
}

.gpt-calendar-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 20px;
  font-weight: 600;
}

.gpt-calendar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gpt-calendar-month-year {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gpt-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 12px;
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}

.gpt-calendar-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
}

.gpt-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 12px;
  background: white;
}

.gpt-calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 600;
  color: #1f2937;
  background: #f9fafb;
  border: 2px solid transparent;
  padding-bottom: 16px;
}

.gpt-calendar-day:hover:not(.disabled):not(.other-month) {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: var(--gpt-primary-color, #667eea);
  transform: scale(1.05);
}

.gpt-calendar-day.selected {
  background: linear-gradient(135deg, var(--gpt-primary-color, #667eea) 0%, var(--gpt-secondary-color, #764ba2) 100%);
  color: white;
  font-weight: 700;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.gpt-calendar-day.today:not(.selected) {
  border-color: var(--gpt-primary-color, #667eea);
  background: white;
  font-weight: 700;
}

.gpt-calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f3f4f6;
}

.gpt-calendar-day.other-month {
  opacity: 0.4;
  background: transparent;
}

.gpt-calendar-day.has-availability::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
}

.gpt-calendar-day.selected.has-availability::after {
  background: white;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.gpt-calendar-day.has-availability.high::after {
  background: #10b981;
}

.gpt-calendar-day.has-availability.medium::after {
  background: #f59e0b;
}

.gpt-calendar-day.has-availability.low::after {
  background: #ef4444;
}

.gpt-calendar-day .gpt-session-dots {
  position: absolute;
  bottom: 2px;
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  height: 6px;
}

.gpt-calendar-day .gpt-session-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.gpt-calendar-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px;
  background: #f9fafb;
  border-top: 2px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
}

.gpt-calendar-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gpt-calendar-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.gpt-calendar-legend-dot.high {
  background: #10b981;
}

.gpt-calendar-legend-dot.medium {
  background: #f59e0b;
}

.gpt-calendar-legend-dot.low {
  background: #ef4444;
}

/* Session Type Selector Styles */
.gpt-session-type-card-selector {
  background: white;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.gpt-session-type-card-selector:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background: linear-gradient(to right, rgba(102, 126, 234, 0.02), white);
}

.gpt-session-type-card-selector.selected {
  background: linear-gradient(to right, rgba(102, 126, 234, 0.08), white);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
  transform: translateX(4px);
}

.gpt-session-type-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.gpt-session-type-duration {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gpt-session-type-duration::before {
  content: "⏱";
  font-size: 16px;
}

.gpt-session-type-buffer {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gpt-session-type-buffer::before {
  content: "⏸";
  font-size: 14px;
}

.gpt-session-type-selector-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gpt-session-type-selector-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gpt-session-type-selector-card h3::before {
  content: "⏰";
  font-size: 24px;
}

/* Add mobile responsive styles to calendar */
@media (max-width: 768px) {
  .gpt-calendar-header {
    padding: 12px;
  }

  .gpt-calendar-month-year {
    font-size: 16px;
  }

  .gpt-calendar-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .gpt-calendar-weekdays {
    padding: 8px;
    gap: 2px;
  }

  .gpt-calendar-days {
    padding: 8px;
    gap: 2px;
  }

  .gpt-calendar-day {
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gpt-calendar-header {
    padding: 10px;
  }

  .gpt-calendar-month-year {
    font-size: 14px;
  }

  .gpt-calendar-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .gpt-calendar-weekdays {
    padding: 6px;
    font-size: 11px;
  }

  .gpt-calendar-days {
    padding: 6px;
  }

  .gpt-calendar-day {
    height: 36px;
    font-size: 13px;
  }
}
