@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;300;400;700&display=swap');
html {
    background-color: #f5f5f5;
}
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto Slab', serif;
}
.top-menu {
    background-color: #27695B;
    width: 100%;
    height: 48px;
}
.top-menu .col-logo {
    width: 50%;
    float: left;
    height: 50px;
}
.top-menu .col-logo .logo {
    padding: 9px;
}
.top-menu .col-logo .logo svg {
    width: 97px;
}
.top-menu .col-logout {
    float: right;
    text-align: right;
    height: 50px;
}
.top-menu .col-logout .logout {
    padding: 9px;
    color: #fff;
}
.top-menu .col-logout .logout button#logout {
    background: none;
    border: none;
    cursor: pointer;
}
button#logout {
    height: 20px;
    color: #fff;
    border: 1px solid #ccc;
    margin-top: 4px;
}
.top-menu .col-name {
    width: calc(50% - 150px);
    float: right;
    text-align: right;
    height: 50px;
}
.top-menu .col-name .name {
    padding: 10px;
    font-size: 23px;
    color: #fff;
}
.main-content {
    min-height: calc(100vh - 50px);
    margin: 0 auto;
}
.main-content .normal_label {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 19px;
}
.main-content .bold_label {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: bold;
}
.boxes { 
    width: 90%;
    margin: auto;
}
.box {
    position: relative;
    width: calc(50% - 23px);
    margin: 4px;
    float: left;
    background-color: #fff;
    border: 1.5px solid #ccc;
    border-radius: 5px;
}
button.visiblebutton {
    position: absolute;
    left: 5px;
    top: 5px;
    border: 1px solid #fff;
    color: #27695B;
    font-size: 20px;
    background-color: #fff;
    cursor: pointer;
}
i.fas.fa-eye-slash {
    color: #BF392C;
}
.content_data {
    text-align: center;
    margin-bottom: 10px;
    min-height: 60px;
    padding: 8px;
}
.content_25 {
    width: 25%;
    float: left;
}
.content_33 {
    width: 33%;
    float: left;
}
.content_50 {
    width: 50%;
    float: left;
}
.content_100 {
    width: 100%;
    float: left;
}
.headline {
    padding: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.content_title {
    font-weight: 700;
    padding: 3px;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid #ccc;
}
.buttons button {
    width: calc(100% - 20px);
    height: 40px;
    border: none;
    margin: 10px;
    margin-bottom: 10px;
    margin-top: 0px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
}

button.button.start {
    background-color: #27695B;
    color: #fff;
}

button.button.pause {
    background-color: #EFC75E;
    color: #222;
}

button.button.stop {
    background-color: #BF392C;
    color: #fff;
}
button.disabled {
    opacity: 0.2;
    cursor:not-allowed;
}
span.description {
    font-size: 15px;
    color: #222;
}
button.edit_description {
    background: #fff;
    border: none;
}
.loginform {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
    min-height: 120px;
    margin-top: 70px;
}
.loginform label {
    font-size: 20px;
}
.loginform input#token {
    width: calc(100% - 24px);
    padding: 12px;
    margin-top: 10px;
    font-size: 45px;
    letter-spacing: 5px;
    text-align: center;
    border-radius: 5px;
}
.loginform .login {
    width: 100%;
    float: left;
}
.loginform .login input {
    width: calc(100% - 22px);
    padding: 11px;
}
.loginform .loginbutton {
    float: left;
    width: 100%;
    height: 79px;
    margin-top: 10px;
}
.loginform .loginbutton button {
    width: 200px;
    height: 80px;
    float: right;
    font-size: 25px;
    background: #27695B;
    color: #fff;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.loginform .loginbutton button:active {
    background: #184239;
}
.loginform #error {
    font-size: 16px;
    margin-top: 20px;
    color: red;
    float: left;
}


/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
