.wp-block-calendar tbody a {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 2.25rem;
min-height: 2.25rem;
padding: 0.2rem;
color: #000000;
background: rgba(179, 156, 125, 0.16);
border: 1px solid #000000;
border-radius: 50%;
font-weight: 700;
line-height: 1;
text-decoration: none;
transition:
background-color 0.2s ease,
color 0.2s ease,
transform 0.2s ease;
}
.wp-block-calendar tbody a:hover,
.wp-block-calendar tbody a:focus-visible {
color: #ffffff;
background: #000000;
border-color: #000000;
transform: scale(1.06);
}
.wp-block-calendar tbody a:focus-visible {
outline: 2px solid #000000;
outline-offset: 3px;
}