/* Login page */

.button {
    background-color: #00EBB8;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.1);
    color: white;
    padding: 8px 12px 10px 18px;
    text-align: center;
    text-decoration: none;
    font-size: 100%;
    margin-top: 10px;
    cursor: pointer;
    width: 280px;
}

.box {
    padding: 20px;
    font-family: sans-serif, Verdana;
    background-color: #f1f4f8;
    text-align: center;
    border: 1px solid;
    border-radius: 5px;
    min-height: 2em;
    width: 280px;
}

.title {
    font-family: 'Roboto';
    margin-top: 12%;
    color: #FFFFFF;
}

.subtitle {
    text-align: left ;
    font-family: 'Roboto';
    font-size: 10px;
    font-weight: 500;
    color: #7F8FA4;
}

.squareInput {
    background-clip: padding-box;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 2px solid #B2C2C4;
    box-sizing: border-box;
    color: #364A5D;
    cursor: text;
    direction: ltr;
    display: inline-block;
    font-family: Lato,Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-stretch: 100%;
    font-weight: 400;
    height: 44px;
    line-height: 20.538px;
    outline-color: #56DCC6;
    overflow-wrap: break-word;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
    text-align: start;
    text-size-adjust: 100%;
    text-transform: none;
    touch-action: manipulation;
    transition-delay: 0s, 0s, 0s;
    transition-duration: 0.25s, 0.25s, 0.25s;
    transition-property: border, color, background-color;
    transition-timing-function: linear, linear, linear;
    width: 100%;
    word-spacing: 0px;
    writing-mode: horizontal-tb;
}

/* Index header */

.connection_button {
    background-color: #0B4D6E;
    border-radius: 6px;
    border: 2px solid #0B4D6E;
    color: white;
    padding: 8px 12px 10px 18px;
    text-align: center;
    font-size: 100%;
    font-family: 'Roboto';
    margin: 10px 10px 10px 10px;
    cursor: pointer;
    width: 100px;
}

.head_ {
    background-color: #0B4D6E;
    text-align: right;
}

/* --- ADD FOR FULL SCREEN --- */

html {
    background-color: white; /* White margin for body */
}

body {
    margin: 8px;
    width: calc(100% - 16px);
}

/* Add React and all Dash containers */
#react-entry-point,
#_dash-app-content,
#_dash-layout,
#_dash-renderer {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* Avoid displaying JavaScript in footer or elsewhere */
script, noscript, #_dash-config, ._dash-undo-redo {
    display: none !important;
}

/* Custom tooltip */
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s;

  position: absolute;
  z-index: 1000;

  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);

  background: #333;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;

  font-size: 13px;
  line-height: 1.4;

  max-width: 400px;
  min-width: 200px;

  white-space: normal;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}