@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.container-calendario-eventos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 10px;
    max-width: 200px; /* Ajuste o tamanho máximo */
    margin-left: 20px; /* Alinha à esquerda */
    margin-top: 15px;
    margin-right: auto; /* Remove margem à direita */
}

.b-mes-eventos {
    background-color: #fff /*#f0f0f0*/;
    width: 60px;
    padding: 10px; /* Ajuste o padding para um tamanho menor */
    text-align: center;
    font-size: 14px; /* Reduza o tamanho da fonte, se necessário */
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
    transition: background-color 0.3s ease;
}

.b-mes-eventos-h2{
    font-size: 1.2rem;
    font-weight: 400;
    font-family: "Roboto", serif;
    margin-left: 20px;
    margin-bottom: 0;
}

.b-mes-eventos:hover {
    background-color: #d0e0ff;
}