
@media (max-width: 768px) {
      #calendar {
        min-height: 50vh;
      }
    }

    .spinner-container {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.7);
      /* Semi-transparent white background */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      /* Ensure spinner is above other elements */
    }

    .fc-event {
      position: static;
      border: none;
    }

    .fc-event-title {
      white-space: normal;
    }

    .regenerate-button {
      background-color: transparent;
      border: 1px solid blue;
      color: blue;
    }

    .manual-select-button {
      background-color: #007bff;
      border-color: #007bff;
      color: white;
    }

    .manual-select-button:hover {
      background-color: #0069d9;
      border-color: #0062cc;
    }

    .dropdown-menu {
      position: absolute;
      left: 0;
      right: 0;
      max-height: 200px;
      overflow-y: auto;
    }

    .button-container {
      z-index: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .fc-daygrid-day-frame {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .fc-content {
      padding-bottom: 25px;
    }

    .fc-day-number {
      z-index: 2;
    }


.no-match-message {
  display: none;
  font-size: 0.8rem;
  color: red;
  margin-bottom: 5px;
}
