.mrb-wrapper {
text-align: center;
margin: 1.5em 0;
} .mrb-button {
display: inline-block;
padding: 1em 2em;
font-family: Arial, sans-serif;
font-size: 1.125rem;
font-weight: 600;
line-height: 1.3;
letter-spacing: 0.02em;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #dddddd;
border-radius: 0.5em;
text-decoration: none;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.1s ease;
min-width: 200px;
max-width: fit-content;
} .mrb-button:hover,
.mrb-button:focus {
background-color: #e0e0e0;
transform: translateY(-1px);
outline: none;
} .mrb-button:active {
background-color: #cccccc;
transform: translateY(0);
} @media screen and (max-width: 600px) {
.mrb-wrapper {
margin: 1em 0;
}
.mrb-button {
display: block;
width: 90%;
max-width: 280px;
margin: 0 auto;
padding: 0.9em 1.8em;
font-size: 1rem;
min-width: unset;
}
}