/* General button-like styling */
a.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #007BFF; /* Primary blue */
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

/* Hover animation */
a.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

/* Active state for click feedback */
a.button:active {
    transform: scale(0.95); /* Slight shrink effect when clicked */
}