<< Go Back to MS CaRE Homepage
.go-back-button {
display: inline-block;
background-color: #ffe9bb;
padding: 3px 10px;
color: #862f2f;
text-decoration: none;
white-space: nowrap;
font-size: 14px;
line-height: 1.2;
border-radius: 5px;
transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.go-back-button:hover {
background-color: #014421;
color: #ffd985;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
animation: bounceLeft 0.7s ease-in-out infinite;
}
@keyframes bounceLeft {
0%, 100% {
transform: translateX(0);
}
50% {
transform: translateX(-6px);
}
}