/*
* Copyright(c) A.K.A wmcomlib.js Universal JavaScript Standard Function Library
* WMProject1217 Studios 2024
* FileName: wmshellui.css
* FileVersion: 0.1.3
* Author: WMProject1217
* LatestCommit: 2024-8-22
*/

.WMShellUI_Container_MessageBox {
    border: none;
    border-radius: none;
    margin: 0;
    padding: 0;
    z-index: 9400;
    user-select: none;
}

.WMShellUI_Container_MessageBox.status0 {
    opacity: 0;
}

.WMShellUI_Container_MessageBox.status1 {
    opacity: 1;
    transition-property: opacity;
    transition-duration: .3s;
}

.WMShellUI_Container_MessageBox.status2 {
    opacity: 0;
    transition-property: opacity;
    transition-duration: .3s;
}

.WMShellUI_Container_MessageBox .background {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, .35);
    z-index: 9400;
}

.WMShellUI_Container_MessageBox .workshield {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    z-index: 9490;
}

.WMShellUI_Container_MessageBox .box {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: max-content;
    height: max-content;
    min-width: 320px;
    min-height: 120px;
    max-width: 56vw;
    max-height: 67vh;
    padding: 8px;
    background-color: rgb(61, 67, 88);
    z-index: 9404;
}

.WMShellUI_Container_MessageBox .box .borderbox {
    border: solid 2px rgb(72, 78, 94);
}

.WMShellUI_Container_MessageBox .box .title {
    padding-top: 6px;
    padding-bottom: 8px;
    color: rgb(205, 196, 169);
    font-size: 24px;
    text-shadow: 1px 1px 1px rgb(80, 78, 65);
    text-align: center;
    z-index: 9411;
}

.WMShellUI_Container_MessageBox .box .splitline {
    width: 100%;
    height: 2px;
    background-color: rgb(72, 78, 94);
}

.WMShellUI_Container_MessageBox .box .data {
    padding-top: 6px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 6px;
    font-size: 20px;
    max-height: 45vh;
    overflow-x: hidden;
    overflow-y: auto;
    color: rgb(240, 227, 224);
    text-shadow: 1px 1px 1px rgb(156, 157, 166);
    word-break: break-all;
}

.WMShellUI_Container_MessageBox .box input {
    font-size: 20px;
    width: 100%;
}

.WMShellUI_Container_MessageBox .box .action {
    text-align: center;
}

.WMShellUI_Container_MessageBox .box .action button {
    cursor: pointer;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 15px;
    outline: 0;
    transition: all .3s;
    text-shadow: 1px 1px 8px rgba(0,0,0,.15);
    padding: 10px 20px;
    width: 170px;
}

.WMShellUI_Container_MessageBox .box .action button:hover:enabled {
    background-color: #FFFFFF;
    border-color: transparent;
    color: #000000;
    box-shadow: 1px 1px 30px rgba(0,0,0,.15),0 6px 15px rgba(36,37,38,.15),inset 5px 5px 15px transparent;
}

.WMShellUI_Container_MessageBox .box .action button:active:enabled {
    background-color: #D9D9D9;
}