#schedule-page {
  /* Base container styles */
  .container {
    max-width: 1200px;
    padding: 0 15px;
  }

  /* Responsive typography 
  .page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
  } */


    /* Add this h3 styling to match services page */
    h3.display-4 {
      font-weight: 700;
      color: #333;
    }

  .lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
  }

  /* Calendar container responsiveness */
  #calendar-container {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: clamp(10px, 2vw, 15px);
    margin-top: 2rem;
    width: 100%;
    overflow-x: auto;
  }

  /* Calendar specific styles */
  #calendar {
    width: 100%;
    min-height: 300px;
    font-size: clamp(0.75rem, 2vw, 1rem);
  }

  /* Make calendar header more compact on mobile */
  .fc .fc-toolbar {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .fc .fc-toolbar-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }

  /* Adjust calendar buttons for mobile */
  .fc .fc-button {
    padding: 0.25em 0.5em;
    font-size: clamp(0.75rem, 2vw, 1rem);
  }

  /* List styles */
  ul.list-unstyled {
    padding-left: 0;
    margin-bottom: 1.5rem;
  }

  ul.list-unstyled li {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #666;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  ul.list-unstyled i {
    color: #007bff;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    flex-shrink: 0;
  }

  /* Button styling */
  .btn-primary {
    background-color: #007bff;
    border: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    white-space: nowrap;
  }

  .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
  }

  /* Media queries for specific device sizes */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
    }

    #calendar {
      min-height: 400px;
    }

    /* Stack calendar buttons vertically on very small screens */
    .fc .fc-toolbar {
      flex-direction: column;
      align-items: stretch;
    }

    .fc .fc-toolbar-chunk {
      display: flex;
      justify-content: center;
      margin: 0.25rem 0;
    }
  }

  /* Adjustments for very small screens */
  @media (max-width: 480px) {
    #calendar {
      min-height: 350px;
    }

    .fc .fc-view {
      padding: 0.25rem;
    }

    .fc td, .fc th {
      padding: 1px;
    }

    .fc .fc-daygrid-day-number {
      padding: 2px 4px;
    }
  }
}