/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
}

header {
    background-color: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
}

nav a {
    margin: 0 1em;
    color: white;
    text-decoration: none;
}

section {
    padding: 2em;
    text-align: center;
}

.player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.player {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1em;
}

#cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.controls {
    display: flex;
    justify-content: space-between;
    width: 200px;
    margin-top: 1em;
}

.control-button {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.control-button i {
    font-size: 1.5em;
    color: #333;
}

.control-button:active {
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2);
}

.progress-container {
    width: 100%;
    margin-top: 1em;
}

#progress {
    width: 100%;
}

.metadata {
    margin-top: 1em;
}

#title, #artist {
    margin: 0;
    font-weight: bold;
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
}

.volume-control i {
    font-size: 1.5em;
    margin: 0 10px;
}

#volumeControl {
    width: 50%;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #333;
    color: white;
}
