html,
body {
    height: 100%;
    font-family: "SF Pro Text", "Myriad Set Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Icons", "Apple Legacy Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

#app {
    height: 100%;
}

.topPanel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out forwards;
    padding: 5px 10px;
    box-sizing: border-box;
    border-bottom: solid 1px #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.topPanel .title {
    font-size: 14px;
    color: #000;
    line-height: 12px;
}

.exitButton div {

    border-radius: 5px;
    font-size: 14px;
    padding: 5px 5px;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: #000;
    text-decoration: none;
    line-height: 12px;
}

.exitButton div:hover {
    color: #1a1a1a;
    cursor: pointer;
}

/*SIMPLE INPUT*/

.simpleInput {
    outline: none !important;
    border-radius: 10px;
    height: 20px;
    font-size: 10px;
    box-sizing: border-box;
    padding: 0 5px 0 5px;
    margin: 3px 5px 3px 0;
    border: solid 1px #8a8a8a;
}

.simpleInput:focus {
    outline: none !important;
}


/*SIMPLE BUTTON*/

.simpleButton {
    color: #fff;
    border-radius: 10px;
    height: 20px;
    font-size: 10px;
    display: flex;
    box-sizing: border-box;
    background: #000;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px 0 5px;
    margin: 3px 5px 3px 0;
    border: solid 1px #000;
}

.simpleButton:hover,
.simpleButton.selected {
    color: #1a1a1a;
    cursor: pointer;
    /* transform: scale(1.005);*/
    background: #fff;
    border: solid 1px #1a1a1a;
}

.simplebuttonLeft {
    background-color: #fff;
    color: #000;
    width: 12px;
    height: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    line-height: 12px;
    margin-right: 10px;
}

.simpleButton:hover .simplebuttonLeft,
.simpleButton.selected .simplebuttonLeft {
    background-color: #1a1a1a;
    color: rgba(240, 240, 240, 0.8);
}


.simplebuttonMiddle {
    white-space: nowrap;
    margin-right: 5px;
}

.simplebuttonRight {
    color: #fff;
    margin-right: 5px;
}

.simpleButton:hover .simplebuttonRight,
.simpleButton.selected .simplebuttonRight {
    color: #000;
    font-weight: bold;
}

/*MASTER*/
#masterPanel .simpleButton:last-child {
    margin-right: 0;
}

#masterinput {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 5px 5px 0 5px;
    justify-content: flex-start;
    border-top: solid 1px #fff;
}

#masterPanel {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 0 5px 5px 5px;
    justify-content:flex-start;
    border-top: solid 1px #fff;
    flex-wrap: wrap;
}

#masterPanelView {
    width: 100%;
    bottom: 220px;
    position: fixed;
}


/*LOG*/


#status {
    height: 220px;
    width: 100%;
    bottom: 0;
    position: fixed;
    left: 0;
}

#socketStatus {
    height: 30px;
    width: 100%;
    font-size: 12px;
    background-color: #000;
    color: #fff;
    padding: 0 10px;
    line-height: 30px;

}

#socketStatus.active {
    box-shadow: inset 5px 0 0 0 #3ef83e;
    /* Зелёная тень слева, 3px */
}

#socketStatus.inactive {
    box-shadow: inset 5px 0 0 0 #ff0909;
    /* Зелёная тень слева, 3px */
}

#socketStatus.loading {
    box-shadow: inset 5px 0 0 0 #dbcd00;
    /* Зелёная тень слева, 3px */
}

#logStatus {
    width: 100%;
    font-size: 14px;
    color: #fff;
    padding: 2px 5px;
    overflow: hidden;
    overflow-y: scroll;
    max-height: 100%;
}


#logStatus ul {
    list-style: none;
    width: 100%;
}

#logStatus li {
    min-height: 30px;
    width: 100%;
    padding: 4px 0 4px 5px;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #575757;
}

#logStatus ul li:last-child {
    border-bottom: 0;

}