.mdaui-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.mdaui-row {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}

.mdaui-year {
    width: 90px;
    background: #6a5acd;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    text-align: center;
}

.mdaui-months {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
}

.mdaui-month {
    padding: 12px 5px;
    text-align: center;
    text-decoration: none;
    color: #5a3fff;
    font-size: 14px;
    border-right: 1px solid #f1f1f1;
}

.mdaui-month:hover {
    background: #f5f5f5;
}

/* Mobile */
@media (max-width: 768px) {
    .mdaui-months {
        grid-template-columns: repeat(3, 1fr);
    }
}
