/**** GENERAL ****/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  font-family: "Roboto Mono", monospace;
  font-size: 0.95rem;
}

body{
  background-color: #4b6584;
}

.main {
  padding: 1em;
}

#container {
  display: grid;
  grid-template-columns: 10% 65% 25%;
  border-radius: 10px;
  background-color: #778ca3;
}

button {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  padding: 0.7em 1.2em;
  border: none;
  background-color: hsl(35, 100%, 55%);
  height: 5em;
  transition: 0.3s;
}

button:active {
  background-color: white !important;
  color: black;
}

/**** IMAGE ****/

#screenShot {
  margin: auto;
  max-width: 900px;
  border-radius: 10px;
}

/**** CONTROLS ****/

#btnContainer {
  display: flex;
  background-color: #a5b1c2;
  border-radius: 10px;
  flex-direction: column;
  align-self:center;
  gap: 4em;
  width: 100%;
  height: 100%;
  padding-top: 3em;
}

#rightControl {
  background-color: #a5b1c2;
  border-radius: 10px;
}

#hintBtn {
  display: none;
}

#submitBtn {
  background-color: hsl(148, 71%, 44%);
}

#submitBtn:hover {
  background-color: hsl(148, 100%, 50%);
}

/* Options */

#options{
  display: none;
  background-color: #a5b1c2;
  border-radius: 10px;
  padding-left: 0.5em;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  color: white;
}

label, input{
  background-color: lightgray;
  padding: 1em 0.5em;
  border-radius: 10px;
  transition: 0.5s;
}

input[type='radio']{ 
  transform: scale(2);
}

input{
  margin: 0.5em;
}

label{
  color: black;
  display: flex;
  align-items: center;
  font-size: 1rem !important;
  font-weight: 700;
}

input:hover, label:hover{
  color: white;
  background-color: hsl(148, 71%, 44%);
  cursor: pointer;
}

input:checked + label {
  color: white;
  background-color: hsl(148, 71%, 44%);
}

/* drop down */

#dropDownContainer{
  height: 100%;
  padding-top: 1.8em;
}

#dropBtn{
  width: 100%;
  border-radius: 0;
  background-color: hsl(148, 71%, 44%);
  height: 3.2em;
  padding: 0;
  margin: auto;
}

#dropBtn:hover {
  background-color: hsl(148, 90%, 44%);
}

.dropdown-content-container{
  display: none;
  background-color: #f1f1f1;
}

.dropdown-content{
  width: 100%;
  height: 3.5em;
  padding: 0;
  border-bottom: 2px solid gray;
  border-radius: 0;
  font-size: 0.85rem;
}

.dropdown-content-selected {
  background-color: white;
  color: black;
}

.show{display: block;}

.hide{display: none;}


/**** MESSAGE & LIVE CATEGORIES DISPLAY  ****/

#messageContainer, #liveCatDisplay {
  background-color: lightgray;
  border-radius: 10px;
  display: none;
  text-align: center;
  width: 100%;
  margin-top: 0.5em;
  padding: 1em;
}

#message, #score {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.live-cat-content {
  text-align: start;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.8em;
}


/**** ALERT ****/

#alertContainer{
  position: absolute;
  display: none;
  box-sizing: content-box;
  justify-content: center;
  align-items: center;
  top: 100px;
  left: 40%;
  transform: translate(-40%, -40px);
  width: 350px;
  height: 320px;
  background-color: rgba(211, 211, 211, 0.75);
  border: 3px solid;
}

#alertBtnContainer{
  position: absolute;
  display: flex;
  bottom: 1em;
  justify-content: space-evenly;
  width: 100%;
}

#alertBtnContainer button{
  width: 100px;
  max-height: 3em;
}

#alertText{
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 10px;
  line-height: 1.8em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
}

#shotLimitMessage{
  padding: 0 2em;
}

.results-text{
margin-bottom: 0.3em;}

#alertCloseBtn {
  display: none;
}

#resultAlert {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bolder;
  margin: 0.5em 0 1em 0;
}

#resetMessage {
  margin: 1em 0;
}

/* Orders */

.item-order-btn-cont:nth-child(2){
  order: 1;
}
.item-order-btn-cont:nth-child(3){
  order: 6;
}
.item-order-btn-cont:nth-child(6){
  order: 2;
}
