html {
  height: 100%;
  width: 100%;
}

h1, h2, p {
  text-align: center;
}

body {
  background-image:url("https://plus.unsplash.com/premium_photo-1667121481745-d4214ee3dc04?q=80&w=1032&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.page-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 3px solid black;
}

.main-content 
{
  flex: 1;
  min-width: 0;
  padding: 20px;
  background: none; /* rgba( 255, 255, 255, 0.95 ); */
  border-radius: 12px;
  margin: 20px;
}

.Image1{
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

/*
.Image2{
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

.Image3{
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
*/
#calendar
{
  width: 100%;
  max-width: 1100px; 
  min-height: 600px;
  margin: 20px auto;
  background: white !important;
  padding: 10px;
  border: 8px solid red; /* to debug if working */ 
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba( 0, 0 , 0, 0.2);
}

#event-modal
{
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba( 0, 0, 0, 0.7);
}

#modal-content
{
  background: white; 
  padding: 20px;
  margin: 10% auto;
  width: 300px;
  text-align: center;
  border-radius: 10px;
}

.fc
{
  background: white !important;
  display: block !important;
}


.fc-toolbar
{
  margin-bottom: 15px;
}

.fc-button
{
  border-radius: 6px !important;
}

.fc-daygrid-day
{
  padding: 5px;
}

.fc-daygrid-day-number
{
  color: black !important;
  font-weight: bold;
}

.fc-col-header-cell
{
  background-color: #f5f5f5 !important;
  font-weight: bold;
}

/* .main-content
{
  padding: 20px;
  background: rgba( 255, 255, 255, 0.9 );
  border-radius: 12px;
  margin: 20px; 
}
  */

  .feedback-form
  {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f39c12;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-group{
    display: flex;
    flex-direction: column;
  }

 .form-group input
 {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
 }

 .form-group textarea
 {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
 }

 .feedback-form button
 {
  padding: 10px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
 }

 .feedback-form button:hover
 {
  background-color: #34495e;
 }

.verse-modal
{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  justify-content: center;
  align-items: center;
}

.verse-content
{
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
}

.carousel-container
{
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carousel-track
{
  display: flex;
  transition: transofrm 0.4s ease-in-out;
}

.carousel-track img{
  width: 20%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  padding: 5px;
  border-radius: 8px;
}

.carousel-btn
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.left
{
  left: 10px;
}

.carousel-btn.right
{
  right: 10px;
}