@font-face {
  font-family: 'Roboto Regular';
  src: url('./assets/fonts/Roboto-Regular.woff') format('woff');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto Bold';
  src: url('./assets/fonts/Roboto-Bold.woff') format('woff');
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

body {
  margin: 0;
  font-family: 'Roboto Regular', sans-serif;
}

.header-container {
  background: radial-gradient(45.93% 194.96% at 99.9% 7.4%, #3D85F7 0%, #3D85F7 0.01%, #3472DB 6%, #2754AF 17%, #1C3A8A 29%, #1C3A8A 29.01%, #13246B 41%, #0C1453 54%, #060943 67%, #030239 82%, #030036 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

#startSlot {
  width: 48px;
  margin: 8px;
}

#centerSlot .logo {
  max-width: 250px;
  width: 100%;
}

#endSlot {
  width: 48px;
  margin: 8px;
}

.refresh-button {
  background: transparent;
  border: none;
  height: 48px;
  width: 48px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refresh-button .refresh-icon {
  font-size: 24px;
  pointer-events: none;
}

#endSlot .refresh-button:hover {
  color: grey;
}

#hostIsOutlookContainer {
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

#hostIsNotOutlookContainer {
  text-align: center;
  margin: 16px 8px;
}

.detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.label {
  color: #020233;
  font-family: 'Roboto Bold', sans-serif;
  font-size: 16px;
}

.value {
  color: #000000;
  font-size: 14px;
  display: flex;
  margin-top: 4px;
}

.value.empty {
  color: #666666;
}

.hidden {
  display: none !important;
}

.separator {
  margin: 4px;
}

.separator-border {
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}

.buttons-container {
  display: flex;
  /*justify-content: center;*/
}

.button {
  font-family: 'Roboto Bold', sans-serif;
  font-size: 16px;
  padding: 0 12px;
  height: 53px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  width: 100%;
  flex: 1;
  color: #fff;
  background-color: #153AC7;
}

.button:not(.disabled).primary:hover{
  background-color: #2c4ecd;
}

.button.secondary {
  color: #FFF;
  background-color: #020233;
  border: 1px solid #020233;
  height: 36px;
}

.button:not(.disabled).secondary:hover {
  background-color: #1b1b47;
  border: 1px solid #1b1b47;
}

.button.danger-outline {
  color: #A6272A;
  background-color: #FFF;
  border: 1px solid #A6272A;
  height: 36px;
}

.button:not(.disabled).danger-outline:hover {
  color: #af3d3f;
  border: 1px solid #af3d3f;
}

.button.disabled {
  opacity: 0.5;
  cursor: auto;
}

.first-button {
  width: 100%;
  flex: 1;
  margin-right: 4px;
}

.last-button {
  width: 100%;
  flex: 1;
  margin-left: 4px;
}

#cannotOrderText {
  color: #FF0000;
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}

#previousOrdersContainer {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.previous-order-date {
  font-family: 'Roboto Bold', sans-serif;
  font-size: 16px;
  color: #020233;
  margin-bottom: 8px;
}

.previous-order {
  margin-top: 8px;
  margin-bottom: 8px;
}

#errors {
  margin-left: 16px;
  margin-right: 16px;
  font-size: 12px;
}

