* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { 
font-family: Consolas, monaco, monospace;
font-size: 2vmin;
scroll-behavior: smooth;
background-color: #2a2a2a;
overflow: hidden;
width: 100&;
height: 100&;
}

img {
  max-height:100%;
  width:auto;
  
}

a:link {
  color: #828282;
  text-decoration: none;
}
a:visited {
  color: #828282;
  text-decoration: none;
}
a:hover {
  cursor: url(/images/cursor.cur), pointer;
  text-decoration: underline;
}
a:active {
  color: #44f651;
  text-decoration: underline;
}

h1 {
  font-size: 3vmin;
  color: #e8e8e8;
  letter-spacing: -2px;
  text-align: left;
  font-weight: 700;
  margin-bottom: 20px;
}

.h1-userhost{
    color: #44f651;
    opacity: 0.7;
}

.h1-title{
    color:#35359d;
}

.blinking{
    animation:blinkingText 1.2s infinite;
}

@keyframes blinkingText{
    0%{     color: #e8e8e8;    }
    49%{    color: #e8e8e8; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #e8e8e8;    }
}


h2 {
  font-size: 2.5vmin;
  color: #e8e8e8;
  letter-spacing: -2px;
  text-align: left;;
  font-weight: 600;
  text-shadow: 0 0 5px #151515;
  margin-bottom: 10px;
  margin-top: 20px;
}

.offline {
  color: red;
}

.online {
  color: green;
}

nav {
  background-image: url("/images/swsp-logo-small.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 100%;
  background-color: #141414;
  height: 10vh;
  top: 0;
  border-bottom: 1px solid #000000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
}

nav img {
  max-height:100%;
  width:auto;
  
}

.nav-container {
  padding-top: 7vh;
  text-align: center;
  float: center;
}

.nav-container ul {

}
.nav-container ul li {
  list-style: none;
  display: inline-block;
  margin: 0 1vh;
}
.nav-container ul li a {
  color: #ecf0f1;
  font-size: 2.3vmin;
  text-decoration: none;
  font-weight: 650;
  transition: all 0.3s ease;
}
.nav-container ul li a:hover {
  color: #4a4a4a;
  border-bottom: 2px solid #ecf0f1;
}

.active {
  border-bottom: 2px solid #ecf0f1;
}

section {
  width: 80vw;
  padding: 2vh;
  background-color: #000000;
  color: #ffffff;
  height: 78vh;
  text-align: left;
  font-size: 2vmin;
  border: 4px solid #4a4a4a;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /*border-radius: 1em;*/
  overflow-y: auto;
  overflow-x: hidden;
  margin-left: auto;
  margin-right: auto;
  scroll-behavior: smooth;
}

.sec {
  margin-top: 1vh;
  height: 78vh;
  margin-bottom: 1vh;
}    

.innersec {
  height: 100%;
  width: 100%;
  margin-top: 40px;
  border-bottom: 0;
  padding-left: 40px;
}

footer {
  height: 10vh;
  width: 100%;
  padding: 1vh;
  background-color: #141414;
  text-align: center;
  border-top: 1px solid #000000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
footer h3 {
  color: #fdfdfd;
  margin-bottom: 1vh;
  font-size: 1.8vmin;
}
footer p {
  color: #ecf0f1;
  font-size: 1.4vmin;
}
footer a:hover {
  color: #fdfdfd;
}




.to-top {
  padding: 3vmin;
  background-color: Transparent;
  width: 4vmin;
  height: 4vmin;
  float: right;
  position: fixed;
  bottom: 0;
  right: 0;
  margin-right: 11vw;
  margin-bottom: 10vh;
  opacity: 0.1;
  
  
}
.to-top:hover {
  opacity: 1;
}
.to-top:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0; 
  height: 0; 
  position: relative;
  right: 2vmin;
  bottom: 4vmin;
  border-left: 2vmin solid transparent;
  border-right: 2vmin solid transparent;
  border-bottom: 3vmin solid #ffffff;

}


.visible {
  opacity: 1;
}

.table-wide {
  width: 100%; 
  border-spacing: 1vmin 0px;
  
}

.table-wide th td {
  margin-left: auto;
  margin-right: auto;
  padding: 2vmin;
  text-align: left;
}

.table-wide th {
  background-color: #4a4a4a;
}


.table-wide td {
    background-color: #151515;
}


.table-long {
  margin-left: auto;
  margin-right: auto;
  width: 80%; 
  border-collapse: collapse;
  background-color: #303030;
  
}

.table-long th td {
  padding: 2vmin;
  text-align: left;
  border: 1px solid #ddd;
  
}

.table-long th {
  background-color: #4a4a4a;
}

.table-long tr:nth-child(even){background-color: #151515;}


 /* Dropdown Button */
.dropbtn {
  background-color: none;
  color: #ecf0f1;
  padding: 2vmin;
  font-size: 2.3vmin;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #141414;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #ecf0f1;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #4a4a4a;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #4a4a4a;} 