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

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

.app-container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 200px;
    background-color: #121212;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.nav-items {
    list-style-type: none;
}

.nav-items li {
    margin-bottom: 15px;
    cursor: pointer;

}

.nav-collection {
    list-style-type: none;
}

.nav-collection li {
    margin-bottom: 15px;
    cursor: pointer;

}

.home {
    color: #00eeff;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #000000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000000;
}

.search-bar {
    width: 360px;
    height: 36px;
    padding: 8px;
    border-radius: 20px;
    border: none;
    background-color: #282828;
    color: #ffffff;
    display: flex;
    color: gray;
}

.user-profile {
    cursor: pointer;
    background-color: #ffffff;
}

.content {
    padding: 20px;
    overflow-y: auto;
}

.track-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.track {
    background-color: #181818;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.track:hover {
    background-color: #282828;
}

.track img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.track-album {
    margin-top: 10px;
    font-weight: bold;
}

.track-artist {
    font-size: 14px;
    color: #b3b3b3;
}

.track-info {
    display: flex;
    align-items: center;
}

.track-details {
    display: flex;
    flex-direction: column;
}

.track-name {
    font-weight: bold;
}

.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.album-cover {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.artist-name {
    font-size: 14px;
    color: #b3b3b3;
}

.player-controls button {
    background: none;
    border: none;
    color: #ffffff;
    /* font-size: 8 px; */
    cursor: pointer;
    margin: 0 10px;
    width: 6px;
    height: 6px;
}

.volume-slider {
    width: 100px;
}

ul {
    font-size:14px;;
}
