  /* Calendar container */
  #calendar {
    position: relative;
    z-index: 1;
  }
/*
*/
.fc-toolbar .fc-button {
  color: white;
}
.fc-toolbar .fc-center {
  position: absolute; /* Position the center content absolutely */
  left: 50%; /* Move the center content to the horizontal center */
  transform: translateX(-50%); /* Adjust the center content to be centered */
}
.fc-toolbar .fc-right {
  margin-left: auto; /* Push the right-aligned content to the right */
}

/* Event form */
#eventForm {
  display: none;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #ffffff;
  background-color: #f6f5f4;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
}

.fc-event-tooltip {
  position: absolute;
  z-index: 9999;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
}

/* Modal backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal container */
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
}

/* Modal dialog */
.modal-dialog {
  position: relative;
  width: auto;
  width: 400px;
  margin: 0 auto;
  margin-top: calc(50vh - 200px); /* Center the modal vertically */
}

/* Modal content */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0.3rem;
  outline: 0;
}

/* Modal body */
.modal-body {
  flex: 1 1 auto;
  padding: 1rem;
}

/* Modal footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #e9ecef;
}
#deleteEventBtn {
  border-radius: 5px;
  width: 110px;
  padding: 5px;
}
#okButton {
  border-radius: 5px;
  background-color: mediumseagreen;
  color: white;
  width: 80px;
  float: right;
  padding: 5px;
}
