/* Webamp (Winamp) Styles for Windows 95 Integration */

#winamp-container {
    /* Position in center of screen */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;

    /* Isolate from external styles using CSS cascade isolation */
    isolation: isolate;
}

/* Ensure Webamp appears above other windows but below the taskbar */
#winamp-container.active {
    z-index: 999;
}

/* Ensure Webamp's internal styles are not overridden */
#winamp-container #webamp {
    position: absolute !important;
}

/* Make sure the Webamp container is properly sized */
#winamp-container > div {
    position: relative;
}