/* Style for the home button in the top-left corner */
.home-button {
    position: fixed; /* Fix the position relative to the viewport */
    top: 20px; /* 10px from the top */
    left: 20px; /* 20px from the left */
    cursor: pointer; /* Pointer cursor on hover */
    z-index: 10; /* Ensure it's above other elements */
}

.home-button img {
    width: 40px; /* Keep consistent size */
    height: 40px;
    object-fit: contain;
}
