body {
      background-color: #f8f9fa;
    }

    .fc-event {
      cursor: pointer;
      color: #000 !important;
    }

    .fc .fc-daygrid-event-dot {
      border-color: #0e5836 !important;
    }

    .fc .fc-daygrid-day-number {
      color: #0e5836 !important;
      font-weight: 600;
    }

    #reservationModal .modal-header {
      background-color: #0e5836;
      color: white;
    }

    #calendar {
      max-width: 100%;
      margin: 0 auto;
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    }

    /* Loader Styling */
    #loader {
      position: fixed;
      z-index: 9999;
      background: rgba(255, 255, 255, 0.8);
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

     #calendar-container {
    min-height: 500px;
    overflow-x: auto;
  }

  @media (max-width: 768px) {
    #calendar {
      min-width: 600px; /* Prevent cramping */
    }
  }