/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(31, 31, 31);
    color: #ecf0f1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    width: 90%;
    height: 90vh;
    background-color: rgb(56, 33, 210);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.sidebar {
    width: 300px;
    background-color: rgb(31, 31, 31);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: rgb(56, 33, 210);
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar ul li {
    padding: 15px 10px;
    margin-bottom: 10px;
    background-color: rgb(31, 31, 31);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
    color: #ecf0f1;
}

.sidebar ul li:hover {
    background-color: rgb(56, 33, 210);
}

.main-content {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1497032205916-ac775f0649ae');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-overlay {
    background-color: rgba(31, 31, 31, 0.8);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
}

.now-playing {
    margin-bottom: 20px;
}

.now-playing h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.song-title {
    font-size: 24px;
    font-weight: bold;
    color: rgb(56, 33, 210);
}

.player {
    background-color: rgb(31, 31, 31);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

audio {
    width: 100%;
}
