#floating-container {
    position: fixed;
    bottom: 54%; /* Adjust as needed */
    right: 0px; /* Adjust as needed */
    z-index: 1000; /* Ensure it's above other content */
}

#floating-element {
    position: relative;
    width: 200px;
    height: 270px;
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 8px;
}

#close-btn {
    position: absolute;
    top: -20px;
    right: 0px;
    padding: 5px 10px;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}
