body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin:10px;
}

#title{
	border: medium solid #e3f2fd;
	background-color: #acd8f9;
}

p {
  color: #383b3f;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

.form-control:active, .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

#calendar {
  max-width: 900px;
  margin: 0 auto; }
  #calendar .fc-view-container {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2); }
    
    
     	/* Modal styles */
/* Background overlay */
.modal-overlay {
    display: none;  /* Hidden by default */
    position: fixed;
    z-index: 1000; /* On top of everything else */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    transition: opacity 0.3s ease;
}

/* Modal container */
.modal-container {
	display:none;
    position: fixed;
    z-index: 1010;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    animation: slideIn 0.4s ease-out;
}

/* Modal header */
.modal-header {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Modal input field */
.modal-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.modal-input:focus {
    border-color:#1baa67; /* Focus effect */
    outline: none;
}

/* Modal footer */
.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.modal-footer button {
    background-color: #1baa67;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.modal-footer button:hover {
    background-color: #1baa67;
}

.modal-footer button.cancel {
    background-color: #f44336;
}

.modal-footer button.cancel:hover {
    background-color: #d32f2f;
}

.border-div {
      border: 2px solid gray; /* Border width, style, and color */
      padding: 2px;          /* Space inside the border */
      border-radius: 8px;     /* Optional: rounded corners */
  }
  
/* Animation for modal */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.error-message {
            color: red;
            font-size: 14px;
            display: none;
        }