/*
    ZEN - VORTEX AI

    File name: main.css
    Description: This file contains the main CSS.

    Coded by George Delaportas (G0D)
    Copyright (C) 2015 - 2023
    Open Software License (OSL 3.0)
*/

body
{
    font: 15px Verdana;
    background: white;
    cursor: default;
    margin: 10px;
    padding: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a
{
    color: #202020;
    font-weight: normal;
}

input[type="text"]:valid,
input[type="url"]:valid
{
    background-color: #b9ffb9;
}

input[type="text"]:invalid,
input[type="url"]:invalid
{
    background-color: #ffbfc9;
}

input[type="number"]
{
    width: 143px;
}

input[type="checkbox"]
{
    outline:none;
    accent-color: #72fbf7;
    margin-top: 0px;
    margin-right: 0px;
}

input[type="button"]
{
    cursor: pointer;
}

textarea
{
    border: 0px;
    outline: none;
}

select
{
    width: 147px !important;
}

#main
{
    text-align: justify;
    width: 100%;
    height: 100%;
    margin: auto;
}

#header
{
    height: 38px;
}

#content
{
    height: calc(90vh);
}

#settings
{
    float: left;
    clear: left;
    background-color: #48c5fe;
    width: 20%;
    min-width: 330px;
    min-height: 845px;
    height: 100%;
    scrollbar-color: #272727 #547e9b;
}

#app_label
{
    float: left;
    clear: left;
    color: #a6ff00;
}

#app_version
{
    float: right;
    font-size: 9px;
    color: white;
    margin-top: 13px;
}

#program_controls
{
    float: right;
    clear: right;
    min-width: 36px;
    width: 38px;
    height: 16px;
    margin-top: 5px;
    margin-right: 11px;
}

#run_ai, #stop_ai
{
    float: right;
    cursor: pointer;
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

#run_ai:hover, #stop_ai:hover
{
    opacity: 1;
}

#run_ai
{
    background-image: url('/site/pix/run.png');
    margin-right: 5px;
}

#stop_ai
{
    background-image: url('/site/pix/stop.png');
}

.settings_category
{
    margin-top: 2px;
}

.title_div
{
    color: white;
    background-color: #3e495f;
    font-size: 20px;
    font-family: monospace;
    text-align: left;
    height: 25px;
    padding: 4px;
}

.cat
{
    cursor: pointer;
    font-size: 16px;
    background-color: #55607f;
    height: 20px;
}

.subcat
{
    font-size: 12px;
    background-color: #345081;
    height: 16px;
}

.options
{
    font-size: 11px;
    color: white;
    background-color: #00000057;
    min-height: 40px;
    padding: 4px;
}

.options_container
{
    height: inherit;
}

.control_container
{
    height: 14px;
    margin-bottom: 5px;
}

.multi_select_control
{
    height: 85px;
}

.controls
{
    float: left;
    clear: right;
    font-size: 11px;
    width: auto;
    border-style: hidden;
    border-color: transparent;
    border-radius: 2px;
    outline-style: none;
    box-shadow: none;
}

.alt_bg
{
    background-color: #00000087;
}

.alt_align
{
    float: right;
}

#options_div
{
    background-color: #0000005e;
    height: calc(100% - 33px);
    overflow-y: scroll;
}

#chain_ai_models
{
    height: 85px;
}

#live_ai
{
    float: left;
    clear: right;
    background-color: #61446f;
    text-align: center;
    width: 80%;
    min-width: 1300px;
    min-height: 743px;
    height: auto;
}

#live_ai img
{
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    max-width: 1280px;
    max-height: 720px;
    border-radius: 16px;
    background-color: #ffffff;
    margin: 10px;
}

#console
{
    float: left;
    clear: right;
    text-align: justify;
    width: 80%;
    min-width: 1300px;
    min-height: 94px;
    height: calc(100% - 743px);
}

#console_data
{
    color: #b6f4ff;
    background-color: #1c1c1c;
    resize: none;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    overflow-y: scroll;
    scrollbar-color: #c4c4c4 #549b80;
}

#copy_console_data
{
    position: relative;
    float: right;
    cursor: pointer;
    background-image: url('/site/pix/copy.png');
    width: 16px;
    height: 16px;
    right: 20px;
    bottom: 22px;
}

#footer
{
    bottom: 10px;
    font-size: 12px;
    color: #878787;
    margin-bottom: 10px;
    padding-top: 10px;
}

#languages
{
    float: right;
    clear: both;
    color: #424242;
}

#languages a
{
    color: #878787;
    text-decoration: none;
}

#err_404, #err_ext
{
    min-height: 509px;
}

#probotek
{
    float: right;
    clear: right;
    text-align: right;
}

#probotek img
{
    width: 50%;
    margin-top: 4px;
}

.logo
{
    float: left;
    clear: left;
    width: 10%;
}

.logo img
{
    width: 100%;
    height: auto;
}

.page
{
    min-height: 845px;
    margin-top: 10px;
}

.controls a
{
    -moz-transition: background .25s ease-in-out;
    -webkit-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}

.controls a:hover
{
    background-color: #F7F7F7;
    -moz-transition: background .25s ease-in-out;
    -webkit-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}

.controls .button
{
    -moz-transition: background .25s ease-in-out;
    -webkit-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}

.controls .button:hover
{
    background-color: #F7F7F7;
    -moz-transition: background .25s ease-in-out;
    -webkit-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}

.button
{
    font-size: 14px;
    color: #424242;
    background-color: #E7E7E7;
    text-decoration: none;
    border: solid 1px #FFB322;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px;
}

.text
{
    font-size: 14px;
    color: #424242;
    background-color: #F7F7F7;
    border: solid 1px #FFB322;
    border-radius: 4px;
    width: 186px;
    padding: 6px;
}

.inactive
{
    background-color: #C8C8C8;
    cursor: not-allowed;
}

.error
{
    background-color: #FFD1D1;
    color: #B94D6F;
    font-weight: bold;
    text-align: center;
    height: auto;
    min-height: 745px;
    padding-top: 100px;
}

.note
{
    color: #1b1b1b;
    background-color: #FFFF6A;
    border: 1px grey solid;
    border-radius: 4px;
    margin: 12px auto auto auto;
    padding: 10px;
}

.footer_copyright
{
    float: none;
    text-align: center;
}

@media only screen and (max-device-width: 572px) and (orientation: portrait)
{
    body
    {
        font-size: 10px;
    }

    #main
    {
        max-width: 100%;
        min-width: auto;

    }

    #left_elements
    {
        clear: both;
        width: 100%;
    }

    #right_elements
    {
        float: left;
        clear: both;
        width: 100%;
    }

    #file_input
    {
        width: 245px;
        min-width: 0px;
    }

    #footer
    {
        margin-top: 0px;
    }

    .logo img
    {
        margin-top: 0px;
    }

    .motto
    {
        font-size: 9px;
    }

    .page
    {
        min-height: 0px;
    }

    .controls
    {
        margin-top: 0px;
    }

    .control_item
    {
        margin-bottom: 10px !important;
    }

    .button
    {
        font-size: 10px;
        width: 264px;
        padding: 8px;
    }

    .button_alt
    {
        width: 264px;
        padding: 8px;
    }

    .text
    {
        font-size: 10px;
        width: 250px;
        padding: 2px;
    }
}
