﻿* {
    box-sizing: border-box;
  }
  
  body {
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      font-size: 16px;
      background-color: black;
      color: white;
  }
  
  /* Page title */
  h1 {
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      font-size:  26px;
      text-align: center;
      color: yellow;
      margin: 65px 0 0 0;
  }
  
  /* Page sub-title */
  h2 {
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      font-size:  20px;
      text-align: center;
      color: white;
      margin: 45px 0 0 0;
  }
  
  /* Protected And Watched Logo */
  .Logo {
      display: block;
      width: 474px;
      height: auto;
      margin: 0 auto auto auto;
  }
  
  /* Login table and controls */
  .LoginTable {
      border: 2px solid white;
      border-radius: 5px;
      color: yellow;
      padding: 10px;
      margin: 10px auto auto auto;
  }
  
  .LoginTableItem {
      text-align: left;
      padding: 5px;
  }
  
  .LoginTableButton {
      text-align: right;
      padding: 5px;
  }
  
  .LoginButton {
      background-color: black;
      border: outset;
      border-left-color: white;
      border-top-color: white;
      border-right-color: grey;
      border-bottom-color: grey;
      color: yellow;
      padding: 5px 10px;
      text-align: center;
      display: inline-block;
      font-size: 18px;
      border-radius: 5px;
  }
  
  .LoginButton:hover {
      transition-duration: 0.4s;
      color: white;
      border-left-color: grey;
      border-top-color: grey;
      border-right-color: white;
      border-bottom-color: white;
  }
  
  .LoginButton:active {
      border-left-color: white;
      border-top-color: white;
      border-right-color: white;
      border-bottom-color: white;
  }
  
  .LoginDiv {
      height: 200px;
  }
  
  .Edit {
      color: yellow;
      background-color: black;
  }
  
  .Edit:focus {
      color: white;
  }
  
  /* Copyright footer */
  .Copyright {
      font-size: 12px;
      text-align: center;
      font-style: italic;
      color: white;
  }
  
  .Panel {
      display: none;
      position: fixed; 
      top: 25%;
      left: 50%;
      transform: translate(-50%, -25%);
  }
  
  .PanelTable {
      color: white;
      background-color: blue;
      border: 2px solid yellow;
      border-radius: 5px;
      padding: 10px;
      text-align: center;
      font-size: 14px;
      margin: 10px auto auto auto;
  }
  
  .PanelTitle {
      color: yellow;
  }
  
  .PanelButton {
      background-color: blue;
      border: outset;
      border-left-color: white;
      border-top-color: white;
      border-right-color: grey;
      border-bottom-color: grey;
      color: yellow;
      padding: 3px 10px;
      text-align: center;
      display: inline-block;
      font-size: 12px;
      border-radius: 5px;
      margin-top: 15px;
  }
  
  .PanelButton:hover {
      transition-duration: 0.4s;
      color: white;
      border-left-color: grey;
      border-top-color: grey;
      border-right-color: white;
      border-bottom-color: white;
  }
  
  .PanelButton:active {
      border-left-color: white;
      border-top-color: white;
      border-right-color: white;
      border-bottom-color: white;
  }

  .outer-div {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.mid-div {
    display: table-cell;
    vertical-align: middle;
}

.center-div {
    margin: 0 auto;
    width: 320px;
    height: 145px;
}

.MenuButton {
    background-color: black;
    border: outset;
    border-left-color: white;
    border-top-color: white;
    border-right-color: grey;
    border-bottom-color: grey;
    color: yellow;
    padding: 5px 10px;
    text-align: center;
    display: none;
    font-size: 18px;
    border-radius: 5px;
    position: absolute;
}

.MenuButton:hover {
    transition-duration: 0.4s;
    color: white;
    border-left-color: grey;
    border-top-color: grey;
    border-right-color: white;
    border-bottom-color: white;
}

.MenuButton:active {
    border-left-color: white;
    border-top-color: white;
    border-right-color: white;
    border-bottom-color: white;
}

/* The Modal (background) */
.Modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }