
/* Hover effects for buttons */
button:hover, .button:hover {
    background-color: #0056b3;
    color: white;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Hover effects for tiles */
.tile:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
