.SP-track-name,
.SP-artist-name {
    display: inline-block;
    text-wrap: nowrap;
    overflow: hidden;
    background-color: #00000085;
    width: 99.5%;
}

.StarrPlayer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #00000085;
    padding: 1rem;
    color: white;
    width: 330px;
}

.SP-track-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: #00000085;
    padding: 0;
    width: 100%;
    position: relative;
}

.SP-track {
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;
    background-color: #00000085;
}

.SP-artist {
    font-size: 1.25rem;
    font-style: italic;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    background-color: #00000085;
}

.SP-duration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    background-color: #00000085;
    width: 100%;
}

.SP-progress-bar {
    width: 100%;
    height: 0.2rem;
    background-color: #ffffff63;
    margin: 0.5rem 0;
}

.SP-progress-bar-fill {
    height: 100%;
    background-color: #8f41fb;
    position: relative;
}

.SP-progress-bar-knob {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(50%, -50%);
    width: 0.75rem;
    height: 0.75rem;
    background-color: #d093ff;
    border-radius: 50%;
}

.SP-button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #00000085;
    width: 100%;
    gap: 0.5rem;
}

.SP-button {
    background-color: #ffffff63;
    color: white;
    padding: 0.25rem 0.75rem;
    border: none;
    cursor: pointer;
    user-select: none;
}

.SP-button:hover {
    background-color: #a8a8a863;
}