.menu-item-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Primary Blue */
    color: #fff; /* White text */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px; /* Rounded edges */
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

.menu-item-button:hover {
    background-color: #0056b3; /* Darker Blue on Hover */
    border-color: #004085; /* Subtle border */
    transform: translateY(-2px); /* Slight Lift */
}

.menu-item-button:active {
    transform: translateY(0); /* Reset when clicked */
    background-color: #004085;
}