@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

.calendar-container { 
    margin: 30px auto!important;
    background: #fff!important;
    border-radius: 12px!important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1)!important;
    padding: 20px!important;
}
.calendar-current-date{
    width: 150px;
}
.calendar-header {
    display: flex!important; 
    align-items: baseline; padding-bottom:24px!important;
}
.calendar-navigation{
    display: flex!important; margin-left:auto!important; align-self: center!important;
}
.calendar-navigation .material-symbols-rounded {
    cursor: pointer!important;
    font-size: 24px!important;
    color: #333!important;
}

#calendar-year-select {
    padding: 4px 8px!important;
    border-radius: 4px!important;
    border: 1px solid #ccc!important; width: 100px!important; margin-left: auto!important;
}

.calendar-body {
    margin-top: 10px!important;
}
 
.calendar-weekdays, .calendar-dates {
    display: grid!important;
    grid-template-columns: repeat(7, 1fr)!important;
    padding: 0!important;
    margin: 0!important;
    list-style: none!important;
    gap: 5px!important;
}

.calendar-weekdays li {
    text-align: center!important;
    font-weight: bold!important;
    padding: 10px 0!important;
}

.calendar-dates li {
    text-align: center!important;
    padding: 10px 0!important;
    background: #f9f9f9!important;
    border-radius: 8px!important;
    position: relative!important;
}
.calendar-dates li.has-event{
    position: relative!important;
}
.calendar-dates li.has-event::after{
    content: ''!important;
    width: 8px!important;
    height: 8px!important; background-color: #FF712A!important;
    border-radius: 100%!important;
    position: absolute!important;
    z-index: 10!important;
    left: 50%!important; margin-left: -4px!important; bottom: 4px!important; cursor: pointer!important;
}

.event-dot {
    width: 8px!important;
    height: 8px!important;
    background: red!important;
    border-radius: 50%!important;
    position: absolute!important;
    bottom: 5px!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
    cursor: pointer!important;
}
.event-card{
    display: flex!important; align-items: center!important; border-top: 1px solid rgba(0,0,0,0.1)!important; padding: 16px 0!important; width: 100%!important;
}
.event-card:first-child{
  border-top: 0px!important; padding: 0 0 16px 0!important;  
}
.event-card .card-left-part{
    width: 45%!important;
}
.event-card .card-left-part img{
    width: 95%!important; border-radius: 15px!important;
}
.event-card .card-right-part{
    flex: 1!important;  font-size: 14px!important;
}
.event-card .card-right-part h4{
    font-size: 18px!important; font-weight: 600!important;color: #212121!important; padding: 0!important; margin: 0!important;
}
.event-card .card-right-part p{
    padding: 0!important; margin: 0!important; font-size: 14px!important;
}
 
 
 #eventPopup {
    display: none;  
    padding: 32px 15px 15px 15px!important; 
    width: 100%!important; height: 520px!important; overflow-y: auto!important;
}
.button-container{
    padding-top: 10px!important; display: flex!important; align-items: center!important; flex-wrap:wrap!important;
}
   
.readmore_link, a.readmore_link{
    background-color: #FF712A!important; padding:6px 25px!important; border-radius: 100px!important; color: #fff!important; font-size: 14px!important; text-decoration: none!important; display: inline-flex!important; margin-bottom: 10px!important; margin-right: 10px!important;
}
a.readmore_link:hover{
    background-color: #F55606!important; padding:6px 25px!important; border-radius: 100px!important; color: #fff!important; font-size: 14px!important; text-decoration: none!important; display: inline-flex!important; margin-bottom: 10px!important; margin-right: 10px!important;
}
.donate_now_link, a.donate_now_link{
 background-color: #F55606!important; padding:6px 25px!important; border-radius: 100px!important; color: #fff!important; font-size: 14px!important; text-decoration: none!important; display: inline-flex!important; margin-bottom: 10px!important;
}
a.donate_now_link:hover{
 background-color: #FF712A!important; padding:6px 25px!important; border-radius: 100px!important; color: #fff!important; font-size: 14px!important; text-decoration: none!important; display: inline-flex!important; margin-bottom: 10px!important;
}
  
.location-area{
    display: flex!important;font-size: 14px!important;
}
.location-area-left{
    padding-right: 16px!important;font-size: 14px!important; font-weight: bold!important;
}
.location-area-right{
    flex: 1!important;font-size: 14px!important;
}
.show-events{
    display: flex!important; width: 1000px!important;
}
.show-events .show-calender{
    width: 400px!important;
}
.show-events .show-calender-data{
    flex: 1!important; padding-left: 30px!important;
}

@media screen and (max-width: 999px) {

    .show-events {
    display: block!important;
    width: 100% !important;
}
    .show-events {
    display: flex!important;
    width: 100%!important;
    flex-direction: column!important;
}
.event-card{
  display: block!important;
}
.show-events .show-calender{
    flex: 1!important;
}
.event-card .card-left-part img{
    width: 100%!important; max-width: 100%!important; height: auto!important;
}
.event-card .card-left-part,.event-card .card-right-part{
    width: 100%!important;
}
.show-events .show-calender-data{
    padding: 0px!important; flex: auto!important;
}
#eventPopup{
    height: auto!important;
}
}