.events-temp {
  background-color: #EFE5DA;
}

.event-cont {
  align-items: center;
  position: relative;

}

.filters {
  margin-top: 5rem;
  background: #F4EDE5;
  border: 2px solid #FFFFFF;
  border-radius: 14px;
  width: 85%;
  padding: 2rem;
}

.filter-label {
  background: white;
  width: 233px;
  text-align: center;
  border-radius: 10px;
  border: none !important;
  font-weight: 500;
  height: 60px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.search-btn {
  width: 200px;
  height: 60px;
  background: #2A6630;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-btn {
  width: 250px;
  height: 60px;
  background: #2A6630;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tit {
  background: url('https://adaptivegreecehub.gr/wp-content/uploads/2024/07/Group-18954.png');
  min-height: 330px;
  font-size: 55px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.title {
  color: white;
  font-weight: bold;
}

.evnt {
  align-items: center;
}

.filter-container {
  display: flex;
  gap: 10px;
  margin: 20px;
}

.filter-label,
.search-button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  user-select: none;
}

.popup-box {
  display: none;
  position: absolute;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 10px;
  z-index: 1000;
  width: 100%;
  /* Adjust width as needed */
  /* top: 18%; */
  /* Adjust top position */
  /* left: 10%; */
  /* Adjust left position */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #2A6530;
  border-radius: 31px;
  /* justify-content: center; */
}


.calendar {
  margin-bottom: 20px;
  width: 40%;
}

.month-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  /* font-weight: bold; */
  margin-bottom: 5px;
  gap:1rem;
}

.days-header>div {
  padding: 5px;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.day {
  padding: 5px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

.empty-day {
  visibility: hidden;
}

.navigation {
  margin-top: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.prev-month,
.next-month {
  background: none !important;
  display: flex;
}


.navigation button {
  background-color: #2A6630;
  color: white;
  border: none;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}

.calendar-container {
  display: flex !important;
  justify-content: center;
  gap: 7rem;
}

.page-numbers {
  color: black;
  font-weight: 500 !important;
  padding: 0.3rem 0.8rem;
}

.page-numbers.current {
  color: white !important;
  background-color: #68B24F;
  border-radius: 20px;
}

.year-grid, .month-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; */
  display:flex;
  flex-direction: column;
  list-style:none;
  padding:0!important;
}

.month-grid li, .year-grid li{
  display:flex;
  flex-direction: column;
}

.month-grid li label, .year-grid li label{
  padding: 6px;
  display:flex;
  gap: 10px;
}

#year-popup, #month-popup{
  border: none;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-radius: 10px;
}



.year-item, .month-item {
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ddd;
}

.year-item:hover {
  background-color: #f0f0f0;
}


