@import url(https://fonts.googleapis.com/css?family=Merriweather);
@import url(https://fonts.googleapis.com/css?family=Montserrat);

body {
    background: #333;
}

#splash-logo {
  display: inline-block;
  background-color: #CCCCCCCC;
  border-radius: 10px;
  margin-left: 30px;
  margin-top: 30px;
  padding: 25px;
}

#splash-logo img {
  width: 400px;
}

#secret-link {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2em;
  text-align: right;
}

#splash-text {
  background-color: #CCCCCCCC;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  margin-left: 50px;
  margin-right: 30%;
}

#splash-text h2 {
  margin: 10px;
  font-family: 'Montserrat';
}

#splash-login {
  margin-top: 20px;
  margin-left: 20%;
  margin-right: 80%;
}

#grid-list {
  padding: 10px;
}

#grid-list div.grid-controls {
  float: right;
  cursor: default;
}

#grid-list div.grid-delete-yes-no {
  float: right;
  cursor: default;
}

#console-header {
  cursor: pointer;
  background-color: #CCCCCCCC;
  width: 20em;
  margin-left: 10px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;

}

#console-list-user-name {
  background-color: #CCCCCCCC;
  width: 20em;
  border-radius: 10px;
  margin-top: 10px;
  padding: 10px;
  margin-left: 50px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;
}

div.console-section {
  cursor: pointer;
  background-color: #CCCCCCCC;
  width: 20em;
  margin-left: 50px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;
}

#grid-list div.grid-select {
  background-color: #CCCCCCCC;
  width: 20em;
  margin-left: 100px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;
}

#grid-list div.confirm-delete {
  background-color: #ff6666CC;
}


#grid-list div.grid-select i.fa-solid {
  cursor: pointer;
}

#grid-list div.grid-select input[type=text] {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.1em;
  border-radius: 10px;
  border: none;
}

#grid-new {
  cursor: pointer;
}

#new-star {
  color: gold;
}

#user-list div.user-select {
  background-color: #CCCCCCCC;
  width: 20em;
  margin-left: 100px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;
}


#mainContent {
    margin-top: 60px;
    padding: 5px;
    background-repeat: no-repeat;
    background-color: #000000;
}

.honeycomb {
  box-sizing: content-box;
}
  
.row:after {
  content: "";
  clear: both;
  display: table;
}

.hex {
  position: relative;
  float: left;
  transition: all 0.3s ease;
}

.hex:before {
  content: "";
  position: absolute;
  border-bottom-style: solid;
  border-right-style: solid;
  border-right-color: transparent;
  border-left-style: solid;
  border-left-color: transparent;
  transition: all 0.3s ease;
}

.hex:after {
  content: "";
  position: absolute;
  border-top-style: solid;
  border-right-style: solid;
  border-right-color: transparent;
  border-left-style: solid;
  border-left-color: transparent;
  transition: all 0.3s ease;
}


.hexagontent {
    font-family: Merriweather, Georgia, serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.2;
    z-index: 100;
}

.hex:hover:before {
  border-bottom-style: solid;
}

.hex:hover:after {
  border-top-style: solid;
}

.invisible .hexagontent {
  display: none;
}

#tileSizeSlider {
  margin-top: 20px;
}


  #sizeDialog label {
    display: inline-block;
    width: 100px;
    padding: 5px;
  }

  #sizeDialog input[type=text] {
    width: 100px;
    padding: 5px;
  }

  #sizeDialog .section {
    padding: 5px;
  }

  #sizeDialog .section input {
    float: right;
  }


.topnav {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 48px;
    width: 100%;
    padding: 5px;
    z-index: 9000;
    background-color: #333;
    overflow: hidden;
    font-family: 'Montserrat';
}
  
  /* Style the links inside the navigation bar */
  .topnav a {
    cursor: pointer;
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 10px 10px 0px 0px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }
