.wave-anim img {
    max-width: 150px;
    display: block;
    margin: 0 auto 10px auto;
}

#track-title {
    color: white;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

#progress-container {
    width: 80%;
    height: 8px;
    background: #333;
    margin: 0 auto 5px auto;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: #600400;
    transition: width 0.25s linear;
}

#time-display {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.controls button {
    background-color: #600400;
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}
