body{
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-flow: column;
}

nav{
    display: flex;
    flex-flow: row;
    width: 350px;
    justify-content: space-between;
    margin: 10px;
}

.nav-button{
    width: 150px;
    height: 40px;
    background-color: rgb(252, 188, 69);
    color: black;
    text-transform: uppercase;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border-bottom: rgb(197, 83, 7) solid 3px;
    box-sizing: border-box;
    cursor: pointer;
}

.control-panel{
    display: flex;
    flex-flow: column;
}

.create-panel, 
.update-panel{
    display: flex;
    flex-flow: row;
    width: 450px;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.text-input{
    width: 200px;
    background-color: white;
    border: orange 1px solid;
    box-sizing: border-box;
    height: 30px;
    border-radius: 10px;
}

.color-input{
    width: 50px;
    height: 30px;
    border-radius: 10px;
    cursor: pointer;
}

.commit-button{
    width: 150px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: rgb(157, 217, 236);
    color: black;
    border-bottom: 3px blue solid;
    border-radius: 10px;
    cursor: pointer;
}

.main-panel{
    width: 450px;
    display: flex;
    flex-flow: row;
    margin: 10px;
    justify-content: space-between;
}

.main-panel .nav-button{
    width: 130px;
    height: 35px;
}

.page-select{
    width: 350px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin: 10px;
}

h1,
h2{
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.winners-container{
    width: 600px;
    display: flex;
    flex-flow: column;
}

.number-column,
.car-column,
.name-column,
.wins-column,
.time-column{
    display: flex;
    flex-flow: column;
    width: 120px;
    box-sizing: border-box;
    border-left: 2px orange solid;
    border-right: 2px orange solid;
    color: white;
    justify-content: space-between;
}


#win-num,
#win-win,
#win-time{
    cursor: pointer;
}

.column-description{
    background-color: rgb(252, 188, 69);
    text-align: start;
    height: 30px;
    font-size: 23px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right;
    background-image: none;
    color: black;
    width: 120px;
}

.reverse{
   background-image: url(fc5736e2aee05cf6d453.png);
}

.usual{
    background-image: url(6722e7abac9e30b021bb.svg);
}

.select-buttons{
    display: flex;
    flex-flow: row;
    width: 500px;
    justify-content: space-between;
    align-items: center;
}

h3{
    color: rgb(252, 188, 69);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.car-section{
    display: flex;
    flex-flow: column;
}

.starter-box{
    display: flex;
    flex-flow: row;
    width: 100px;
    justify-content: space-between;
}

.start{
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: green 2px solid;
    box-sizing: border-box;
    border-radius: 12px;
    color: green;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.stop{
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: red 2px solid;
    box-sizing: border-box;
    border-radius: 12px;
    color: red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.disabled{
    border-color: grey;
    color: grey;
}

.disabledButton{
    background-color: rgb(70, 70, 70);
    color: white;
}

.winnerbox{
    width: 50%;
    height: 200px;
    position: fixed;
    top: 50%;
    left: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    background: linear-gradient(270deg, rgba(175, 30, 19, 0.3), transparent);
    border-radius: 40px;
}

.winner-anounce,
.winner-info{
   font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   color: orange;
   font-size: 60px;
   margin-top: 10px;
   text-shadow: 10px 10px 10px black;
}

.winner-anounce{
    font-style: italic;
}

.hidden{
    display: none;
}

.descriptor-box{
    display: flex;
    flex-flow: row;
}

.column-box{
    display: flex;
    flex-flow: row;
}
