* {
    margin: 0;
    padding: 1%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #9c2b43, #bbbec2);
    color: white;
}

.player {
    width: 90%;
    background: #1f1f1f;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.player img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.song-info h3 {
    margin-bottom: 5px;
}

.song-info p {
    color: #bbb;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.controls button {
    background: #b63c71;
    border: none;
    color: white;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.controls button:hover {
    background: #ff6b81;
    transform: scale(1.1);
}

.progress-container {
    background: #444;
    border-radius: 10px;
    cursor: pointer;
    margin: 15px 0;
    height: 8px;
    width: 100%;
}

.progress {
    background: #b63c71;
    height: 100%;
    width: 0%;
    border-radius: 10px;
}

.time {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.volume-container {
    margin: 20px 0;
}

.volume-container label {
    /* margin-right: 10px; */
    /* margin-bottom: 10px; */
    font-size: 30px;
}

.volume-container input {
    width: 80%;
    background: #444;
    border: none;
    outline: none;
}

.playlist {
    margin-top: 20px;
    text-align: left;
}

.playlist ul {
    list-style: none;
    margin-top: 10px;
}

.playlist li {
    padding: 10px;
    height: 50px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: 0.2s;
}

.playlist li:hover {
    background: #333;
}