﻿@charset "UTF-8";
.dashboard-module {
  height: 100%;
  /*padding-left: calc(20vw - 50px);*/
  padding-right: 3vw;
}

.opc-btn {
  text-decoration: none;
}

.dashboard-button {
  width: 100%;
  /* padding: 15px 20px 15px 20px; */
  background: #e7e7e7;
  text-decoration: none;
  border-bottom: 1px #d7d7d7 solid;
  display: flex;
}
.dashboard-button a {
  text-decoration: none;
  /*font-weight: bold;*/
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  /* margin: 0; */
  font-size: 16px;
  color: #000;
}
.dashboard-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

input,
button {
  padding: 2px 5px;
}

.version-header {
  margin: auto;
  color: #fff;
  font-size: 10px;
}

.logserver-logs-list {
  padding: 20px;
  margin-top: 20px;
  font-size: 12px;
}
.logserver-logs-list .log-row span {
  padding-right: 5px;
}
.logserver-logs-list .log-row .log-timestamp {
  color: green;
}

.header-row {
  /*text-align: right;*/
  /*padding-right: 20px;*/
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #fafafa !important;
  border-bottom: 1px solid #e2e2e2;
}

.item-row {
  margin-top: 1px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 1px;
}

.logserver-info-panel {
  float: right;
  position: relative;
  font-size: 12px;
}
.logserver-info-panel .logserver-info-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.logserver-info-panel .logserver-info-row .info-header {
  text-align: right;
  padding-right: 20px;
}
.logserver-info-panel .logserver-info-row ul {
  list-style: none;
}

.logs-panel .logs-table .logs-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.logs-panel .logs-table .logs-row ul {
  list-style: none;
  min-height: 45px;
}
.logs-panel .logs-table .logs-row ul li {
  padding-left: 5px;
  font-size: 11px;
}

.apikey-panel {
  /*font-size: 12px;*/
}
.apikey-panel .apikey-menu-bar {
  display: grid;
  grid-template-columns: 1fr auto;
}
.apikey-panel .apikey-table .apikey-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
}
.apikey-panel .apikey-table .apikey-row ul {
  list-style: none;
}
.apikey-panel .apikey-table .apikey-row input[type=text] {
  width: 100%;
  padding: 3px 0;
  border: 0;
}
.apikey-panel .apikey-table .apikey-row button {
  cursor: pointer;
}
.apikey-panel .apikey-table .apikey-row .delete-button {
  padding-left: 5px;
  padding-right: 5px;
}
.apikey-panel .apikey-table .apikey-row .delete-button:after {
  display: inline-block;
  content: "×";
  /* This will render the 'X' */
  font-size: 15px;
  font-weight: 600;
}
.apikey-panel .apikey-table .apikey-row:hover {
  background: #fafafa;
}

.settings-panel .update-table .wa-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 100px;
}

.serverconfig-panel h2 {
  font-weight: initial;
  padding-bottom: 5px;
}
.serverconfig-panel .opc-toggler-section.is-open + .opc-toggle-wrapper {
  border: 0;
}

.dropdown-menu-button {
  position: relative;
  width: fit-content;
  border: solid 1px transparent;
  border-radius: 2px;
}
.dropdown-menu-button .dropdown-menu {
  position: absolute;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 2px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  outline: none;
  z-index: -1;
  max-height: 0;
  transition: opacity 0.1s;
  padding: 5px 0;
  text-align: left;
  right: 0;
  left: unset;
  min-width: 160px;
  width: auto;
  white-space: nowrap;
  margin-top: 2px;
}
.dropdown-menu-button .dropdown-menu ul {
  list-style: none;
}
.dropdown-menu-button .dropdown-menu .menu-item {
  padding: 5px 15px 5px 10px;
  width: 100%;
  cursor: pointer;
}
.dropdown-menu-button .dropdown-menu .menu-item:hover {
  background-color: #efefef;
}
.dropdown-menu-button .three-dots {
  width: 30px;
  text-align: center;
  padding-left: 5px;
}
.dropdown-menu-button .three-dots:after {
  cursor: pointer;
  color: #333;
  content: "⠇";
  font-size: 20px;
  padding: 0 5px;
}
.dropdown-menu-button.dropdown-is-open {
  outline: none;
  border-color: #ccc;
}
.dropdown-menu-button.dropdown-is-open .dropdown-menu {
  opacity: 1;
  z-index: 1000;
  max-height: 100vh;
  transition: opacity 0.2s;
}
.dropdown-menu-button:hover {
  border-color: #ccc;
  transition: color 0.1s;
}
