.scroll-top-wrapper-f52c1dce {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top-wrapper-f52c1dce.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn-f52c1dce {
    background-color: #333;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.scroll-top-btn-f52c1dce:hover {
    background-color: #555;
}

/* Ensure SVG icons inherit dimensions if not explicitly set */
.scroll-top-btn-f52c1dce svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
    transition: fill 0.3s ease;
}