.floating-refill-btn-f8e913cc {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Light background */
    padding: 12px 24px;
    border-radius: 50px; /* Pill shape */
    border: 2px solid #333333; /* Darker border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #333333; /* Dark text for contrast */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    max-width: 200px;
}
.floating-refill-btn-f8e913cc:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #f7f7f7;
    color: #333333;
}
.floating-refill-btn-f8e913cc span {
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}