﻿body {
  background-color: #404258;
  margin: 50px;
  display: flex;
  color: white;
  height: 100%;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 20px;
}

a {
  text-decoration: none;
  color: white;
}

.estimate-wrapper {
  background-color: #6b728e;
  border-radius: 20px;
  flex: 1;
  padding: 50px;
}
.estimate-wrapper .room_title {
  margin-bottom: 50px;
}
.estimate-wrapper .estimate-options {
  display: flex;
  gap: 50px;
  padding: 0px 20px 50px 20px;
  flex-wrap: wrap;
}
.estimate-wrapper .estimate-options a {
  flex: 1;
  color: white;
  font-size: 2rem;
  flex-grow: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
  padding: 30px 0px 30px 0px;
  background-color: #404258;
  border-radius: 20px;
  max-width: 150px;
}
.estimate-wrapper .estimate-options a:hover {
  background-color: #535569;
  transform: scale(1.1);
}
.estimate-wrapper .results .flex_headers, .estimate-wrapper .results .flex_row {
  display: flex;
  gap: 20px;
}
.estimate-wrapper .results .flex_col {
  justify-content: center;
  flex: 1;
}
.estimate-wrapper .results .user_result {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #404258;
  border-radius: 20px;
  margin: 20px 0px 20px 0px;
}
.estimate-wrapper .results .user_name {
  display: flex;
  align-items: center;
  margin: 20px 0px 20px 0px;
}
.estimate-wrapper .results .stage {
  display: flex;
  text-transform: uppercase;
  align-items: center;
  padding: 20px;
}
.estimate-wrapper .results .user_online {
  margin: 10px;
}
.estimate-wrapper .buttons .buttons {
  display: flex;
  padding: 50px 20px 0px 20px;
  gap: 20px;
  margin-bottom: 50px;
}
.estimate-wrapper .buttons a {
  color: white;
}
.estimate-wrapper .buttons .reveal {
  background-color: #554994;
}

.button {
  font-size: 2rem;
  padding: 30px 40px 30px 40px;
  background-color: #404258;
  border-radius: 10px;
}

.button:hover {
  background-color: #535569;
  transform: scale(1.1);
}

.login_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
}
.login_wrapper .login_screen {
  display: flex;
  flex-direction: column;
  background-color: #6b728e;
  border-radius: 20px;
  padding: 50px;
}
.login_wrapper .login_screen .buttons {
  gap: 20px;
  display: flex;
  justify-content: center;
}
.login_wrapper .login_screen h1, .login_wrapper .login_screen h4 {
  text-align: center;
  text-transform: uppercase;
}
.login_wrapper .login_screen .form-control {
  margin: 20px 0px 20px 0px;
}
.login_wrapper .login_screen .login {
  background-color: #554994;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: white;
}

.dot-online {
  height: 25px;
  width: 25px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
}

.dot-offline {
  height: 25px;
  width: 25px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
}

.error_message {
  color: #cd5c5c;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.base {
  background-color: #6b728e;
  border-radius: 20px;
  padding: 20px;
}

.flex-wrapper {
  justify-content: center;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.flex-wrapper .flex-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flex-wrapper .flex-middle {
  flex: 1;
  display: flex;
  gap: 20px;
}
.flex-wrapper .flex-middle .add-stage-wrapper {
  flex-grow: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  min-width: 300px;
}
.flex-wrapper .flex-middle .add-stage-wrapper .add-stage-overview {
  margin: 20px;
  flex-grow: 1;
  height: 100%;
}
.flex-wrapper .flex-middle .add-stage-wrapper .add-stage-overview .stages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  max-height: 43vh;
}
.flex-wrapper .flex-middle .add-stage-wrapper .add-stage-overview .stages .stage {
  text-align: center;
  width: 100%;
  background-color: #404258;
  border-radius: 20px;
  padding: 10px 0px 10px 0px;
}
.flex-wrapper .flex-middle .add-stage-wrapper .add-stage-overview .stages .selected {
  background-color: #554994;
}
.flex-wrapper .flex-middle .add-stage-wrapper .add-stage-input {
  margin: 20px;
}
.flex-wrapper .flex-middle .choice-wrapper {
  flex-grow: 1;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.flex-wrapper .flex-middle .choice-wrapper .choice-overview {
  flex-grow: 1;
}
.flex-wrapper .flex-middle .choice-wrapper .choice-overview .choices {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-wrapper .flex-middle .choice-wrapper .choice-overview .choices .choice {
  flex: 1;
  color: white;
  font-size: 2rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
  padding: 30px 0px 30px 0px;
  background-color: #404258;
  border-radius: 20px;
  max-width: 100px;
  min-width: 100px;
}
.flex-wrapper .flex-middle .choice-wrapper .choice-input .button-wrapper {
  display: flex;
  gap: 20px;
}
.flex-wrapper .flex-middle .add-button {
  display: inline-block;
  padding: 5px 10px 5px 10px;
  background-color: #554994;
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 20px;
  color: white;
}
.flex-wrapper .flex-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
