﻿/* ------ CONSOLE LAYOUT ------ */
.console-background {
    width: 100%;
    height: 0;
    background-color: #1e2833;
    display: flex;
    flex-direction: column;
}

.console-container {
    width: 100%;
    height: 100%;
    background-color: #1e2833;
    overflow: auto;
}

.console-body {
    padding: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Consolas;
    color: white;
    font-size: 0.9rem;
    line-height: 1;
}

.console-item {
    padding-bottom: 5px;
}

.console-item:nth-child(even) {
    background-color: rgba(0,0,0,.1);
}

/* ------ DEVICES LAYOUT ------ */
.devices-container {
    width: 40%;
    height: 100%;
    background-color: #545454;
    overflow: auto;
}

.badge-types {
    width: 90px;
}

.badge-types-desc {
    opacity: .7;
    color: white;
}

