.senthor-badge-wrapper {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.senthor-badge {
    width: 40px;
    height: 40px;
    background: #7FE01E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.senthor-badge-text {
    display: none;
    margin-right: 10px;
    background: #7FE01E;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
}

.senthor-badge-wrapper:hover .senthor-badge-text {
    display: block;
}