body {
    background-color: #1a1a1a;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
}


.sidenav {
  height: 100%;
  width: 60px;
  position: fixed;
  z-index: 1;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.48) 6px 2px 16px 0px, rgba(0, 0, 0, 0.8) -6px -2px 16px 0px;
  left: 0;
  background-color: #131313;
  overflow-x: hidden;
  padding-top: 10px;
}

.sidenav img {
    max-width: 50px;
    padding-left: 5px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 90px;
    margin-right: 50px;
margin-top:25px;
  padding: 0px 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

a { 
    text-decoration: none;
    color:rgb(161, 161, 161);
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

h3 {
    color:rgb(255, 255, 255);
}

p {
    color:rgb(179, 179, 179);
}



.border {
    height:3px;
    margin-top:10px;
    border-radius: 90px;
    background: linear-gradient(
        90deg,
        rgb(255, 135, 135) 0%,
        rgb(255, 207, 134) 10%,
        rgb(247, 255, 129) 20%,
        rgb(156, 255, 152) 30%,
        rgb(144, 255, 253) 40%,
        rgb(149, 241, 255) 50%,
        rgb(146, 197, 255) 60%,
        rgb(187, 153, 255) 70%,
        rgb(225, 142, 255) 80%,
        rgb(255, 154, 241) 100%
    );
}


.staffmember {
    background-color: #131313;
    width: 250px;
    padding:10px;
    border-radius: 10px;
    margin-bottom:10px
}

.staffmember img {
    max-width: 23px;
    vertical-align: middle;
    margin-left: 10px;
    border-radius: 4px;
}

.command {
    background-color: #272727;
    padding:3px;
    border-radius: 10px;
    max-width: 500px;
    margin-bottom:10px;
}

.commandname {
    padding-left:3px;
    padding-top:5px;
    font-size: 18px;
}

.commandrank {
    padding: 8px;
    color:#c4c4c4
}

.commanddesc {
    padding:3px;
    color:rgb(194, 194, 194);
}


.respond {
  width: 60%;
  border-radius: 10px;
  height: auto;
}


.respond1 {
  width: 30%;
  height: auto;
}

@media only screen and (max-width: 600px) {
.respond1 {
  width: 100%;
  height: auto;
}
.main {
  margin-left: 65px;
    margin-right: 0px;
}
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #2e2e2e;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.staffprofile {
    background-color: #131313;
    text-align: center;
    align-items: center;
    padding:5px;
    max-width: 300px;
    margin:4px;
    border-radius: 10px;
}

.cmd {
  color:yellow;
}

.contributor {
  background-color: #131313;
  padding:10px;
  max-width: 500px;
  border-radius: 15px;
}

.contributor img {
  max-width: 30px;
  vertical-align: middle;
  border-radius: 50px;
}


form input {
  background-color: #252525;
  color:white;
  padding:3px;
  border: none;
  border-radius: 4px;
}

form textarea {
  background-color: #252525;
  color:white;
  padding:3px;
  border: none;
  border-radius: 4px;
}

form button {
  background-color: #131313;
  color:white;
  padding:5px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}