* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1d1d1d;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: sans-serif;
}

.topbar {
    position: fixed;
    /* stays at top */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;

    background: #111;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    font-weight: bold;
    font-size: 18px;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
}

.nav a:hover {
    text-decoration: underline;
}

.login-btn {
    background: #2e86ff;
    border: none;
    padding: 8px 14px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.player-container {
    width: 400px;
    background: #181818;
    border-radius: 20px;
    /* margin-top: 80px; */
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.album-art {
    width: 100%;
    height: 300px;
    /* background-image: url('./img/logo.png'); */
    border-radius: 15px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
}

.song-info {
    text-align: center;
    margin-bottom: 30px;
}

.song-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.song-artist {
    font-size: 16px;
    color: gray;
}

#progress {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background-color: #F68048;
    border-radius: 3px;
    margin-bottom: 10px;
    cursor: pointer;
}

.progress-section {
    margin-bottom: 30px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: gray;
}

.controls {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 20px;
}

.control-btn {
    width: 60px;
    height: 60px;
    background-color: #0992C2;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.control-btn:hover {
    background-color: #0779A0;
}

.play-btn {
    width: 80px;
    height: 80px;
    /* font-size: 24px; */
}

#track-count {
    color: grey;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: -20px;
}

.song-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    /* height: 400px; */
    /* overflow-y: auto; */
}

.song-list button {
    padding: 10px;
    height: 45px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
    font-size: 21px;
}