
/* Fullscreen Page */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font: 14px Verdana, Arial, sans-serif;
    background: #edf0f5;
    color: #000000;
}

.container {
    width: 95%;
    max-width: 1600px;
    margin: 10px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 10px;
}

/* Header */
.header {
    background: linear-gradient(45deg, #31FF98, #ff6f61);
    color: #ffffff;
    padding: 10px;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    text-align: center;
    text-shadow: 1px 1px #303030;
}

/* Navigation */
.nav {
    float: left;
    width: 200px;
    background: #2b3e50;
    color: #ffffff;
    min-height: calc(100vh - 50px);
    padding: 10px;
    border-radius: 0 0 0 12px;
}

/* Main Content */
.content, .contentwide {
    margin-left: 210px;
    padding: 15px;
    background: #ffffff;
    color: #000000;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #31FF98, #ff6f61);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    border-radius: 0 0 12px 12px;
    font-size: 0.9em;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-family: "Lucida Console", Monaco, monospace;
}

table th, table td {
    padding: 10px 8px;
    border: 1px solid #ccc;
    text-align: center;
}

table th {
    background: linear-gradient(to bottom, #31FF98, #ff4b3a);
    color: #ffffff;
    text-shadow: 1px 1px #8b0000;
}

table tr:nth-child(even) { background: #f7f7f7; }
table tr:nth-child(odd)  { background: #d0d0d0; }

table td {
    color: #000000;
}

/* Scrollable Tail */
#tail {
    width: 100%;
    height: 500px;
    overflow: auto;
    background: #000000;
    color: #00ff00;
    padding: 5px;
    border-radius: 6px;
}

/* Links */
a { text-decoration: none; color: #0000e0; }
a:hover { text-decoration: underline; }

/* Tooltip */
a.tooltip span, a.tooltip2 span {
    display: none;
    position: absolute;
    background: #f7f7f7;
    border: 1px solid #000000;
    padding: 5px;
    color: #000000;
    font-size: 12px;
    z-index: 100;
}

a.tooltip:hover span, a.tooltip2:hover span { display: block; }

/* Toggle Switch */
.toggle + label {
    display: inline-block;
    width: 40px;
    height: 20px;
    background: #ddd;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

input.toggle-round-flat:checked + label {
    background: #31FF98;
}

input.toggle-round-flat + label:after {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: left 0.3s;
}

input.toggle-round-flat:checked + label:after {
    left: 21px;
}

/* Nice Select */
.nice-select.small, .nice-select-dropdown li.option {
    height: 28px !important;
    line-height: 28px !important;
}
