.calendar-container {
    font-family: Arial, sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    background: rgba(6, 31, 47, 0.85);
    border-radius: 20px;
    overflow: hidden;
}
.event-list {
    padding: 5px;
    vertical-align: top;
    border-top: 1px solid #123a52;
}
.calendar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.calendar-cell {
    background-color: #1a1a1a; */
    min-height: 110px;
    border-radius: 0;
    position: relative;
    font-size: 13px;
    background-color: hsla(0, 0%, 50.2%, .1019607843);
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
	border-top: 0;
    border-right: 0;
}

.calendar-cell .calendar-date {
    font-size: 12px;
    color: #aaa;
    position: relative;
    color: #7bacca;
    font-size: 20px;
    text-align: left;
    line-height: 2;
    font-weight: 700;
	padding-left: 10px;
    padding: 15px;
}

.calendar-cell .event {
	display: block;
    margin: 0 0 2px 0;
    padding: 1px 2px;
    border-radius: 5px;
    zoom: 1;
    color: #9ac0d6;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    display: block;
    font-size: 13px;
    border-radius: 5px;
}

.calendar-cell .event:hover {
	    background: #1e5875;
	
}

.calendar-cell .event:hover strong {
	color: #fff;
}
.calendar-cell .event strong {
	width: 40%;
    color: #9ac0d6;
    display: inline-block;
    height: 22px;
    border-radius: 5px;
    background: #071c29;
    text-align: center;
    line-height: 22px;
    margin-right: 4px;
    float: left;
}
.calendar-header .calendar-cell,
.calendar-cell.header {
	background-color: #222;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    height: auto;
    padding: 10px 0;
    min-height: auto;
    color: #ffffff;
    background: rgba(6, 31, 47, 0.85);
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
    border-radius: 0;
	border-right: 0;
}
.calendar-cell.current {
        border-top: 2px solid #ff9238;
    position: relative;
    color: #ff9238;
    background: #124058;
    border-bottom: 2px solid #ff9238;
}
.calendar-cell.current .calendar-date {
    color: #f7912a;
    font-weight: bold;
}
.calendar-cell.current .event {
    
}
.calendar-row.current-week {
    background-color: rgba(0, 123, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.3);
    position: relative;
    z-index: 1;
}