#lastfm-widget{
    position: fixed;
    top: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 12px;

    width: 280px;
    padding: 12px;

    background: rgba(15,15,15,.75);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;

    box-shadow: 0 0 25px rgba(0,0,0,.45);

    color: white;
    font-family: Arial, sans-serif;

    z-index: 9999;

    transition: .25s ease;
}

#lastfm-widget:hover{
    transform: translateY(-2px);
    border-color:#ffffff22;
}

#cover{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
}

.info{
    overflow:hidden;
}

#status{
    font-size:11px;
    color:#67ff83;
    margin-bottom:4px;
}

#song{
    font-weight:bold;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

#artist{
    color:#b0b0b0;
    font-size:14px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}