:root {
    --orange-yellow-crayola: #fbb034; 
}
#calendar-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    /* background: ; */
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
}

#calendar {
    max-width: 100%;
    margin: 0 auto;
    color: var(--orange-yellow-crayola);
}

.fc-event {
    background-color: #007BFF;
    border: none;
    color: var(--orange-yellow-crayola);

    font-size: 0.9em;
}

#calendar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#close-calendar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: var(--orange-yellow-crayola);

}

#calendar-popup h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--orange-yellow-crayola);
}
/* whatsapp */
.rotate-icon {
    font-size: 20px;
    animation: rotate 2s linear infinite;
    
    display: inline-block;
    color: #25D366;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .whatsapp-container {
    position: relative;
    width: 40px;
    height: 40px;
    color: #25D366;
    padding: 1px;
  }

  .whatsapp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
  }

  .whatsapp-icon {
    color: white;
    background-color: #25D366;
   
  }
   /* Style the button */
   #backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
}

#backToTopBtn:hover {
    background-color: #ac40ab;
}
/* footer bold */
strong {
  font-weight: bold;
}