#shov-floating-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    z-index: 9999;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#shov-floating-player.active {
    transform: translateY(0);
}

.shov-floating-inner {
    display: flex;
    align-items: center;
}

#shov-floating-cover {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.shov-inline-player {
    border: 1px solid #eee;
    padding: 15px;
    margin-top: 20px;
}

.shov-inline-wrap {
    display: flex;
    align-items: center;
}

.shov-inline-cover {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.shov-play-btn {
    background: #ff5500;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}
