/**
 * @copyright (c) 2004 - 2026 Performa Software Pty Ltd. All Rights Reserved.
 * @summary 🅱🅸🅳🆂 Server
 */

@layer theme {
    :is(:root:not([data-theme]), :root[data-theme=Light]) div#top-test-bar {
        --test-bar-background-color: #f1de62;
        --test-bar-shadow-color: #717577;
    }

    :root[data-theme=Dark] div#top-test-bar {
        --test-bar-background-color: #48244a;
        --test-bar-shadow-color: black;
    }
}

div#top-test-bar {
    background-color: var(--test-bar-background-color);
    padding: 2px 10px 2px 10px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin-top: 4px;
    margin-left: 15px;
    min-width: 200px;
    box-shadow: 3px 5px 15px 0px var(--test-bar-shadow-color);
}

    div#top-test-bar .test-name {
        font-weight: bold;
    }

    div#top-test-bar .environment-name {
        font-weight: bold;
    }


/*
    CSS rules for inert BODY element (when Pause key is pressed)
*/
body[inert] div#top-test-bar .fa-image-landscape {
    display: none;
}

body:not([inert]) div#top-test-bar .fa-circle-pause {
    display: none;
}

body[inert] div#top-test-bar .fa-circle-pause {
    display: inline-block;
}
