:root {
    --bg-color: rgb(35,35,35);
    --box-width: 50%;
    --entry-width: 70%;
}


html, body, .searchbox {
    height: 100%;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    
}

form {
    display:flex;
    flex-direction: column;
    gap:.5em;
    width: var(--entry-width);
    box-sizing: border-box;
}

table {
    /* width: var(--entry-width); */
    width: 100%;
    color: white;
}

th {
    background-color: #6a6a6a;
    border: 1px solid #6a6a6a;

}
td {
        border: 1px solid #6a6a6a;
        padding: 3px;
}

h1,h2,h3,label {
    color: white;
}

.searchbox {
    /* border: 1px solid red; */
    display: flex;
    align-items: left;
    justify-content: space-between; 
    font-size: 1em;
    flex-direction: column;
    box-sizing:border-box;
    flex:1 1 auto;
    
}
.searchitem {
    /* border: 3px solid blue; */
    display: flex;
    /* justify-content: left; */
    align-items:center;
    width:100%;
    flex: 1 1 auto;
    box-sizing:border-box;
    gap:.5em;
}
.searchbit {
    display: flex;
    flex:1 1 0px;
    /* border: 1px solid white; */
    box-sizing:border-box;
    justify-content: right;
}
.fullbody {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    
}

.msg
{
    font-size: 2em;
    color:red;
}

.content {
    display: flex;
    width: var(--entry-width);
    flex-direction:column;
    margin:auto;
    /* border:1em solid black; */
    padding: .5em;
    box-sizing: border-box;
    /* background-color:#ffffff; */
}

.login {
    display: flex;
    width: var(--box-width);
    /* flex-direction:column; */
    margin:auto;
    border:1em solid black;
    
    box-sizing: border-box;
    background-color:#ffffff;
}

.jazzstuff {
    display: flex;
    width: var(--box-width);
    flex-direction:column;
    margin:auto;
    border:1em solid rgb(0, 0, 0);
    /* padding: .5em; */
    box-sizing: border-box;
    background-color: var(--bg-color);
}
.topbar {
    flex: 1 1 auto;
    background-color:#000000;
    display: flex;
    flex-wrap: wrap;
}
.logo {
    flex:1 1 auto;
    box-sizing: border-box;
}
.menu {
    flex:1 1 auto;
    box-sizing: border-box;
}
.loginunit {
    flex: 1 1 auto;
    padding: .5em;
}

.units {
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
    /* align-items: center;
    justify-content: center; */
    flex-direction: row;
    padding: 1em;
    
}

.bitty {
    padding: 2em;
    background-color:rgb(154, 154, 154);
    width: 23%;
    border-radius:.5em;
    position: relative;
  display: inline-block;
}

input[type=text],[type=date],[type=password] {
   padding:.25em;
   border:.5em solid rgb(0, 0, 0); 
   font-size: 1em;
   border-radius:.5em;
   box-sizing: border-box;
   width: 100%;
}

option{
    padding:.5em;
    background-color:blueviolet;
}
select{
    padding:.5em;
    border:.5em solid blue;
    background-color: blueviolet;
}

input[type=button]{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1em;
    border: .5em solid black;
    border-radius: 4px;
    background-color:rgb(109, 109, 109);
    transition: all 0.5s ease;
    padding:.25em;
}

input[type=button]:hover{

    background-color:rgb(35, 35, 35);
}
input[type=submit]{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1em;
    border: .5em solid black;
    border-radius: .5em;
    background-color:rgb(255, 255, 255);
    transition: all 0.5s ease;
    /* background-image: url('hut1.jpg'); */
    padding:.25em;
    width:80%;
}

input[type=submit]:hover{
background-color:rgb(247, 212, 97);    
}

input.translatoritem {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    
    border: 1px solid black;
    border-radius: .5em;
    background-color:rgb(255, 255, 255);
    transition: all 0.5s ease;
}

input.translatoritem:hover {
    background-color:red;
}
body {
    background-color: grey;
    background-image:url('img/smoke.png');
    background-size:cover;
}

a {
    color: rgb(171, 205, 255);
    transition: all 0.5s ease;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: underline;
}
.tinybit
{
    font-size: .75em;
}

.google-login-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #110404;
  cursor: pointer;
}
.google-login-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: rgb(35, 35, 35);
  margin-right: 15px;
}
.google-login-btn .icon svg {
  fill: #fff;
}
.google-login-btn:hover {
  background-color: #403636;
}
.google-login-btn:hover .icon {
  background-color: rgb(35, 35, 35);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  box-sizing:border-box;
  display:flex;
}

ul li {
  float: left;
  flex:1 1 auto;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 1em;
  box-sizing:border-box;
  text-decoration: none;
}

ul li a:hover {
  background-color: #6a6a6a;
}
.logout a:hover {
    background-color: red;
}
.picked {
    background-color:#6a6a6a;
    color:#000000;
}

@media screen and (max-width: 600px)
{
    :root {
        --bg-color: rgb(35, 35, 35);
        --box-width: 100%;
        --entry-width:100%;
    }
    .topbar {
        flex-direction:column;
    }
}