.#ecofm-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #1d2327;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

#ecofm-cover{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:6px;
    margin-right:10px;
}

#ecofm-track{
    color:#fff;
    font-weight:bold;
    margin-right:10px;
}

#ecofm-live-indicator {
    display: inline-block;
    background: #6ccc03;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left:15px;
    opacity:0;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

#ecofm-play, #ecofm-popup{
    margin-left:15px;
    cursor:pointer;
}