/* -----------------------------------------------------------------------------
   Modal popup FullCalendar
----------------------------------------------------------------------------- */
.fc-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fc-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  font-family: sans-serif;
}

.fc-modal-content h2 {
  margin-top: 0;
  font-size: 1.4em;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.fc-modal-content ul {
  list-style: none;
  padding: 0;
}

.fc-modal-content li {
  margin-bottom: 15px;
}

#fc-close {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background: #3a87ad;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#fc-close:hover {
  background: #2e6d8f;
}

