* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* font-family: 'Roboto', Arial, Helvetica, sans-serif; */
    background-color: #0d1117;
    color: #dee2e6;
    /* height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center; */
}

.container {
    width: 100%;
    max-width: 320px;
    padding: 1rem;
    margin: auto;
    margin-top: 1.5rem;
    /* border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); */
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.text-center {
    text-align: center;
}

.fs-14 {
    font-size: .875rem;
}

#song-list {
    padding: .5rem;
    border-radius: .375rem;
    border: 1px solid #dee2e6;
    height: 240px;
    overflow-y: auto;
    font-size: 13.3333px;
    margin: 0;
    list-style-type: none;
}

.song-list-item {
    padding: .25rem .5rem;
    border-bottom: 1px solid #dee2e6;
    /*margin-top: .25rem;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.song-list-item:hover {
    background-color: #2b3035;
    color: #fff;
}

.song-list-item.active {
    background-color: #0d6efd;
    color: #fff;
}

.song-list-item:last-child {
    border-bottom-width: 0;
}

#song-title {
    white-space: nowrap;
    text-align: center;
    animation: none;
}

#song-title.song-title-animation {
    animation: slideInFromRight 16s linear infinite;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.controls {
    width: 100%;
    max-width: 300px;
    height: 40px;
    background-color: #484848;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    font-size: 22px;
}

button {
    all: unset;
    cursor: pointer;
    border: none;
    outline: none;
}

