.dropdown-menu {

    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    /* padding:20px; */
    width: 100%;
  }
  
  
.navbar .form-inline {
    flex: 1;
    justify-content: flex-end;
  }


#navbarSupportedContent{
    background-color: rgba(0, 0, 0, 0.7);    
    border-radius:10px;
    padding:10px;
  }
  #search_form{
    margin:10px;
    /* display:inline-flex; */
    position: relative;
  }

  .search-field{
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.5); 
    border: none; 
    border-radius: 20px; 
    padding-left: 30px;
}




  .button {
    padding: 10px 15px;
    background-color: var(--color-accent);
    border-radius: 15px;
    color:#fff;
    font-size: 12px;
  }



  .secondary-button{
    padding: 10px 15px;
    background-color: var(--color-primary);
    border-radius: 15px;
    color:#fff;
    font-size: 12px;
  }


  .user-login-btn{
    box-shadow: none;
    border:none;
    /* background-color: transparent; */
    /* padding: 10px 15px;
    background-color: var(--color-accent);
    border-radius: 15px; */
    /* margin-left:20px; */
    /* width:40px;
    height:40px; */
    /* color:#fff;
    margin:auto; */
  }




/*-----Login modal -----*/


#loginModal{
  padding-top:30%;
}





/*-----HOME PAGE*/

.carousel-inner {
    height: 400px; /* Adjust the height to your desired value */
}

.carousel-item img {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    object-position: center;
}
.slide-caption-container{

  position: absolute;
  right: 15%;
  top: 35%;
  left: 15%;
  /* padding-top: 1.25rem;
  padding-bottom: 1.25rem; */
  color: #fff;
  text-align: center;
}


.slide-caption-header{
    font-size: 20px;
}
.slide-caption-desc{
    font-size: 14px;

    color: #fff;
}



/*----ACTIVITY CALENDAR---*/

.activity-top-container{
    background-image: url('../images/slide/slide_1.jpg');
    background-size: cover; /* Scale the image to cover the entire div */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; 
    min-height:400px;
    padding-top:120px;
  }

  .calendar-day {
    width: 100px; /* Set a fixed width for each day cell */
    height: 120px;
    word-wrap: break-word; /* Allow long words to wrap */
    white-space: normal; /* Ensure that text can wrap */
    overflow: hidden; /* Hide overflow text */
    background-color: #00000038; /* Change this to your desired color */
    border: 1px solid #ddd; /* Optional: Add a border for separation */
  
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: top;
  }

  .calendar-day-today {
    width: 100px; /* Set a fixed width for each day cell */
    height: 120px;
    word-wrap: break-word; /* Allow long words to wrap */
    white-space: normal; /* Ensure that text can wrap */
    overflow: hidden; /* Hide overflow text */
    background-color: #00000038; /* Change this to your desired color */
    border: 1px solid #ddd; /* Optional: Add a border for separation */
    font-weight: 800; 
    font-size:18px;
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: top;
  }
  .more-events{
    /* border: solid 1px #fff;  */
    background-color: var(--color-secondary);
    padding: 5px;
    margin: 3px 0;
    border-radius: 5px; /* Rounded corners */
    overflow-wrap: break-word; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to wrap */
    white-space: normal; /* Enable normal wrapping */
    max-width: 100%; /* Ensure it does not exceed the box width */
    box-sizing: border-box; /* Include padding and border in width */
    color: #fff;
    font-size: 10px;
}
  .calendar-event {
    /* border: solid 1px #fff;  */
    background-color: var(--color-third);
    padding: 3px;
    margin: 3px 0;
    border-radius: 5px; /* Rounded corners */
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    width: 100%; /* Ensure it takes the full width */
    box-sizing: border-box; /* Include padding and border in width */
    color: #000;
    font-size: 10px;
}

.calendar-activity {
    /* border: solid 1px #fff; */
    background-color: var(--color-forth);
    padding: 3px;
    margin: 3px 0;
    border-radius: 5px; /* Rounded corners */
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    width: 100%; /* Ensure it takes the full width */
    box-sizing: border-box; /* Include padding and border in width */
    color: #000;
    font-size: 10px;
}


#currentMonth {
    color: #ffffff;
    /* margin: 0 15px; */
    font-size: 14px;
    font-weight: 600;
  }
  



  /* map   */


#public_map {
  /* width:100%;
      height:1000px;
      position:static !important;
      z-index:100; */
  margin-top: 80px;
  ;
}

#detail_box {
  width: 380px;
  /* height:800px; */
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  z-index: 1002;
  top: 80px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;

  transform: translateX(-50%);
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


#detail_box.show {
  display: block;
  animation: slideIn 0.3s ease-out forwards;
}

#detail_box.hide {
  display: none;
  animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
      transform: translateY(20px);
      opacity: 0;
  }

  to {
      transform: translateY(0);
      opacity: 1;
  }

}

@keyframes slideOut {
  from {
      transform: translateY(0);
      opacity: 0;
  }

  to {
      transform: translateY(20px);
      opacity: 1;
  }

}
.map-reference-card{
  bottom:10px;
  right:10px;
  position:absolute;
  width:150px;
  z-index:1001;
}

.map-reference-card-dot{
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.map-reference-card-label{
  font-size:10px;
}