/* styles.css */
#add-to-home-btn {
    display: block;
    position: fixed;
    top: 50%; /* Center vertically */
    right: 10px; /* Align to the right side */
    transform: translateY(-50%); /* Adjust to center the button */
    background: #000000b9;
    color: #fff;
    padding: 12px 18px;
    border-radius: 20px; /* Slightly more rounded corners for elegance */
    font-size: 16px; /* Slightly larger font size for readability */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

