.khrc-event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.khrc-event-item {
    display: flex;
    align-items: center;
    position: relative;
    transition: background 0.3s;
	font-family: 'Montserrat', sans-serif;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* Date Box (20% width) */
.khrc-event-date {
	height: 60px;
    display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
    background: #23578099;
    border-radius: 10px;
    padding: 5px;
    width: 12.5%;
    color: #fff;
    position: relative;
    overflow: hidden;
	font-family: 'Montserrat', sans-serif;
	border-radius: 8px;
}

.khrc-event-item:last-child {
    border-bottom: none;
}

.khrc-event-bar {
    height: 8px;
    width: 100%;
    background: #87B6E4;
    position: absolute;
    top: 0;
    left: 0;
}

/* Centered date text */
.khrc-event-date-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
	font-family: 'Montserrat', sans-serif;
}

.khrc-event-date .khrc-month {
	color: #87B6E4;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.8;
	line-height: 1;
}

.khrc-event-date .khrc-day {
    font-size: 26px;
    font-weight: bold;
	line-height: 1;
}

/* Title with 20px spacing */
.khrc-event-content {
	width: 80%;
    margin-left: 5%;
}

.khrc-event-content h3 {
	font-size: 18px;
    color: #ffffff;
    line-height: 24px;
	font-weight: 700;
}

.khrc-event-icon {
	width: 5%;
    color: #87B6E4;
    text-decoration: none;
    font-size: 24px;
    margin-left: auto;
}

.khrc-event-icon svg {
	height: 22px;
    width: 22px;
    fill: #87B6E4;
}

.khrc-alert .khrc-event-date {
    background-color: rgba(255, 87, 87, 1); /* Alerts background */
}

.khrc-announcement .khrc-event-date{
    background-color: rgba(251, 184, 61, 1); /* Announcements background */
}

.khrc-event-item.khrc-alert .khrc-event-icon i,
.khrc-event-item.khrc-announcement .khrc-event-icon i {
    color: #ffffff;
}

@media (max-width: 900px) {
	.khrc-popup-content {
		max-width: 50% !important;
	}
	.khrc-event-date {
		width: 25% !important;
	}
	
	.khrc-event-content h3 {
    	font-size: 16px !important;
	}
}
@media (max-width: 600px) {
	.khrc-popup-overlay {
		bottom: -10px !important;
		left: -10px !important;
	}
	.khrc-popup-content {
		max-width: 80% !important;
        font-size: 12px !important;
		border-radius: 0px !important;
	}
	.khrc-popup-content button {
		font-size: 11px !important;
	}
}