* {
    font-size: 10px;
}

.calendar {
    width: 100%;
    border-collapse: collapse;
}

.calendar .header .month-year {
    font-size: 24px;
    font-weight: bold;
    color: #d34727; /*color: #636e73;*/
    padding: 20px 0;
    width: 100%;
    align-items: center;
/*    border-bottom: 2px solid #e6e9ea; */
}

/*
.calendar .header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #d34727;
    padding: 20px 0;
    border-bottom: 2px solid #e6e9ea;
}
*/
.calendar .message {
    font-size: 18px;
    font-weight: bold;
    background-color: #f5f5f5;
    color: #d34727;
    padding: 10px 0;
    text-align: center;
    border: 1px solid #e6e9ea;
}

.calendar table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.calendar table th {    
    width: 14.28%; /* 100% divided by 7 for equal column widths */
    padding: 10px;
    text-align: center;
    border: 1px solid #e6e9ea;
}

.calendar table td {
    width: 14.28%; /* 100% divided by 7 for equal column widths */
    padding: 10px;
    text-align: left;
    border: 1px solid #e6e9ea;
    vertical-align: top;
    height: 120px; /* Add minimum height for calendar cells */
}

.calendar table td a {
    font-size: 13px;

}
.calendar table th {
    background-color: #d34727;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

.calendar table td {
    vertical-align: top;
    font-weight: bold;
    color: #7c878d;
    cursor: pointer;
    min-height: 100px;
}

.calendar table td .event {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 4px;
    background-color: #f7c30d;
    color: #fff;
}

.calendar table td .event.green {
    background-color: #51ce57;
}

.calendar table td .event.blue {
    background-color: #518fce;
}

.calendar table td .event.red {
    background-color: #ce5151;
}

.calendar table td.ignore {
    background-color: #fdfdfd;
    color: #ced2d4;
    cursor: inherit;
}

.calendar table td.selected {
    background-color: #f1f2f3;
    cursor: inherit;
}
