.dsb-sticky-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #edcd6b;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    z-index: 1000;
}

.dsb-icon {
    width: 30px;
    height: 30px;
}

.dsb-content {
    display: none;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dsb-sticky-button:hover .dsb-content {
    display: block;
}

.dsb-content img {
    width: 100%;
    height: auto;
}

.dsb-content p {
    margin: 10px 0 0 0;
}
