#audioplayer {
    width: 100%;
    
    height: 60px;
    
    background: #401215;
    
    display: flex;
    align-items: center;
    padding: 5px 15px;
    gap: 15px;
    
}

/* Play/Pause button */
#pButton {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    outline: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

/* Simple SVG-style fallback using CSS */
.play {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23C8A15D' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='16,8 56,32 16,56'/%3E%3C/svg%3E");
}

.pause {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23C8A15D' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='16' y='10' width='10' height='44'/%3E%3Crect x='38' y='10' width='10' height='44'/%3E%3C/svg%3E");
}

/* Timeline */
#timeline {
    flex: 1;
    height: 6px;
    background: rgba(200, 161, 93, 0.25);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

/* Progress */
#playhead {
    width: 9px;
    height: 9px;
    background: #C8A15D;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}