/* Player Winamp Simples - HTML5 */
#simple-winamp {
    position: fixed;
    bottom: 50px;
    left: 20px;
    width: 275px;
    background: linear-gradient(180deg, #3f4c6b 0%, #2e3a52 100%);
    border: 2px outset #b0b0b0;
    font-family: Arial, sans-serif;
    z-index: 99999;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.4);
}

#simple-winamp .title-bar-winamp {
    background: linear-gradient(180deg, #3b5998 0%, #2d4373 100%);
    color: #fff;
    padding: 3px 5px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    cursor: move;
}

#simple-winamp .close-btn {
    cursor: pointer;
    background: #c00;
    color: #fff;
    border: none;
    width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 14px;
}

#simple-winamp .display {
    background: #000;
    color: #00ff00;
    padding: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    min-height: 40px;
}

#simple-winamp .controls {
    background: #3f4c6b;
    padding: 8px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

#simple-winamp .controls button {
    width: 30px;
    height: 25px;
    background: #5a6a8a;
    border: 1px outset #7a8aaa;
    color: #fff;
    cursor: pointer;
    font-size: 10px;
}

#simple-winamp .controls button:active {
    border-style: inset;
}

#simple-winamp .volume {
    padding: 5px 8px;
    background: #2e3a52;
}

#simple-winamp .volume input {
    width: 100%;
}
