.mec-calendar-wrapper {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    font-family: sans-serif;
    max-width: 300px;
}
.mec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
}
.mec-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.mec-grid-header, .mec-grid-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 days a week */
    text-align: center;
}
.mec-grid-header span {
    font-size: 0.8em;
    color: #888;
    padding-bottom: 5px;
}
.mec-day, .mec-empty {
    padding: 8px 0;
    font-size: 14px;
    color: black;
}
.mec-has-event {
    background-color: #0073aa;
    color: #fff !important;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}
.mec-has-event:hover {
    background-color: #005177;
}