
/*** Global ***/

html, body {
  height: 100%;
  margin: 0;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('HeroSectionBG.jpg');
/*  background-image: url('DarkBG.jpg');*/
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.container-fluid {
  margin: 0;
  padding: 0;
}

.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/*** Layout ***/

.app-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  flex: 1;
}

.two-col-home {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}

.two-col-setup {
  display: flex;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .two-col-home,
  .two-col-setup {
    flex-direction: column;
  }
  .home-left-panel,
  .setup-left-panel {
    flex: none;
    width: 100%;
  }
  .home-right-panel,
  .setup-right-panel {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}


/*** Home: Left Panel ***/

.home-left-panel {
  flex: 0 0 38%;
  background: rgba(2,18,34,0.65);
  border-radius: 12px;
  padding: 36px 28px;
  color: #fff;
}

.setup-left-panel {
  flex: 0 0 38%;
  background: rgba(2,18,34,0.65);
  border-radius: 12px;
  padding: 36px 28px;
  color: #fff;
  border: 1px solid rgba(0, 229, 209, 0.35);
  box-shadow: 0 0 30px rgba(0, 229, 209, 0.1);
}

.home-panel-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
}

.home-panel-subtitle {
  color: #aaa;
  margin: 0 0 28px;
  line-height: 1.5;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ddd;
}

.feature-icon {
  font-size: 1.1rem;
}

.home-panel-footer {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}


/*** Home: Right Panel ***/

.home-right-panel {
  flex: 1;
  background: rgba(2,18,34,0.85);
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
}

.setup-right-panel {
  flex: 1;
  background: rgba(2,18,34,0.85);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 229, 209, 0.35);
  box-shadow: 0 0 30px rgba(0, 229, 209, 0.1);
}


/*** Tabs (Login / Register) ***/

.home-tab-header {
  display: flex;
}

.home-tab-btn {
  flex: 1;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: #aaa;
  background: rgba(255,255,255,0.04);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  user-select: none;
}

.home-tab-btn.active {
  color: #222;
  background: #00e5d1;
  border-bottom-color: #00e5d1;
}

.home-tab-btn:not(.active):hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.home-tab-content {
  display: none;
  padding: 24px;
  flex-direction: column;
  gap: 14px;
}

.home-tab-content.active {
  display: flex;
}


/*** Form Inputs (Login / Register panels) ***/

.home-tab-content .form-group {
  margin: 0;
  width: 100%;
}

.home-tab-content .form-control {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 12px 14px !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.home-tab-content .form-control::placeholder {
  color: #777;
}

.home-tab-content .form-control:focus {
  border-color: #00e5d1 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(0,229,209,0.2) !important;
}

.mandatory-note {
  color: #888;
  font-size: 0.82rem;
  margin: 0;
}

.reg-footer {
  color: #888;
  font-size: 0.88rem;
  margin: 4px 0 0;
}

.forgot-link {
  text-align: center;
}

.forgot-link a {
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
}

.forgot-link a:hover {
  color: #fff;
}


/*** Responsive Form (player metadata) ***/

.resp-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.resp-form > div {
  flex: 0 1 auto;
  max-width: 300px;
  min-width: 150px;
  width: 100%;
  align-self: flex-end;
}

.resp-form > div > div {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .resp-form {
    flex-direction: column;
    align-items: stretch;
  }
  .resp-form > div {
    max-width: 100%;
  }
}


/*** Typography ***/

.text-tip {
  color: #a3a3a3;
}

.text-info {
  color: #00e6e6;
}

.text-warning {
  color: #d4a017;
}


/*** Buttons ***/

.btn {
  margin: 10px;
}

.btn-primary {
  background-color: #00e6e6 !important;
  border-color: #00e6e6 !important;
  color: #222 !important;
  font-weight: bold;
  font-size: 1rem !important;
  letter-spacing: 0.08em !important;
  border-radius: 8px !important;
}

.btn-primary:hover {
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.5) !important;
  color: #fff !important;
  filter: brightness(1.1);
}

.btn-success {
  background-color: #00ffb4 !important;
  border-color: #00ffb4 !important;
  color: #222 !important;
  font-weight: bold;
  font-size: 1rem !important;
  letter-spacing: 0.08em !important;
  border-radius: 8px !important;
}

.btn-success:hover {
  background-color: #00d49b !important;
  border-color: #00d49b !important;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(0, 255, 180, 0.7) !important;
}

.btn-warning {
  background-color: #ff9900 !important;
  border-color: #ff9900 !important;
  color: #222 !important;
  font-weight: bold;
  font-size: 1rem !important;
  letter-spacing: 0.08em !important;
  border-radius: 8px !important;
}

.btn-warning:hover {
  box-shadow: 0 0 10px rgba(255, 153, 0, 0.5) !important;
  color: #fff !important;
  filter: brightness(1.1);
}


/*** Header ***/

.my-header {
  background-color: #222;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.logo {
  height: 40px;
}

.logo-small {
  display: none;
}

.header-spacer {
  flex: 1;
}

.header-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
  margin: 0;
}

.header-btn:hover {
  background-color: #fff;
  color: #222;
}

@media (max-width: 600px) {
  .logo-large { display: none; }
  .logo-small { display: inline; }
}


/*** Collapsible Sections ***/

.collapse-content {
  margin-top: 10px;
}

.info-tip > p {
  margin: 0 0 4px 0;
}

.info-tip > p:last-child {
  margin-bottom: 0;
}


/*** Chat Layout (two-column) ***/

.chat-layout {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
}

/* -- Left: chat panel -- */

.chat-panel {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  background: rgba(2,18,34,0.65);
  border: 1px solid rgba(0, 229, 209, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 229, 209, 0.07);
  overflow: hidden;
}

.panel-section-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00e6e6;
  margin: 0;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 229, 209, 0.15);
  background: rgba(0, 229, 209, 0.04);
}

#chat-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

#chat-wrapped {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

#chat_history {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  max-height: 480px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 209, 0.3) transparent;
}

#chat_history::-webkit-scrollbar {
  width: 5px;
}

#chat_history::-webkit-scrollbar-track {
  background: transparent;
}

#chat_history::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 209, 0.3);
  border-radius: 3px;
}

.chat-message {
  background: rgba(34, 34, 34, 0.85);
  padding: 14px 18px;
  border-radius: 10px;
  max-width: 88%;
  box-sizing: border-box;
  font-size: 0.9rem;
  line-height: 1.55;
}

.chat-message > h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00e6e6;
  margin: 0 0 8px 0;
}

.chat-message p:last-child {
  margin-bottom: 0;
}

.bot-message {
  align-self: flex-start;
  border-left: 3px solid rgba(0, 229, 209, 0.5);
}

.user-message {
  align-self: flex-end;
  border-right: 3px solid rgba(0, 255, 180, 0.5);
}

.sticky_prompt {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.15);
}

.sticky_prompt .form-group {
  margin-bottom: 10px;
}

.sticky_prompt .form-control {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  resize: none;
}

.sticky_prompt .form-control::placeholder {
  color: rgba(255,255,255,0.45) !important;
}

.sticky_prompt .form-control:focus {
  border-color: rgba(0, 229, 209, 0.5) !important;
  box-shadow: 0 0 0 2px rgba(0, 229, 209, 0.12) !important;
  outline: none !important;
}

.chat-btn-row {
  display: flex;
  gap: 10px;
}

.chat-btn-row .btn {
  margin: 0;
  flex: 1;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em !important;
  padding: 8px 12px !important;
}

.reset-sandbox-btn {
  display: block;
  margin: 8px 0 0 0 !important;
  padding: 0 !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
  text-align: left;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}

.reset-sandbox-btn:hover {
  color: rgba(255, 100, 100, 0.7) !important;
  background: transparent !important;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .chat-layout { flex-direction: column; }
  .chat-panel  { flex: none; width: 100%; }
  .telemetry-panel { width: 100%; }
  #chat_history { max-height: 320px; }
}


/* -- Right: telemetry panel -- */

.telemetry-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.telemetry-panel > .panel-section-header {
  background: rgba(0, 229, 209, 0.04);
  border: 1px solid rgba(0, 229, 209, 0.2);
  border-radius: 12px 12px 0 0;
  margin-bottom: -1rem;
}

/* Telemetry cards */

.telemetry-card {
  background: rgba(2,18,34,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.telemetry-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 10px 0;
}

.telemetry-card-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.telemetry-card-body svg {
  flex-shrink: 0;
}

.telemetry-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: #f0f0f0;
}

/* Risk-level card colours */
.risk-0  { border-color: rgba(0, 230, 230, 0.45);   box-shadow: 0 0 14px rgba(0, 230, 230, 0.1);   }
.risk-1  { border-color: rgba(255, 238, 0, 0.45);   box-shadow: 0 0 14px rgba(255, 238, 0, 0.1);   }
.risk-2  { border-color: rgba(255, 153, 0, 0.45);   box-shadow: 0 0 14px rgba(255, 153, 0, 0.1);   }
.risk-3  { border-color: rgba(255, 59, 59, 0.45);   box-shadow: 0 0 14px rgba(255, 59, 59, 0.1);   }
.risk-4  { border-color: rgba(255, 238, 0, 0.45);   box-shadow: 0 0 14px rgba(255, 238, 0, 0.1);   }
.risk-5  { border-color: rgba(255, 153, 0, 0.45);   box-shadow: 0 0 14px rgba(255, 153, 0, 0.1);   }
.risk-6  { border-color: rgba(255, 59, 59, 0.45);   box-shadow: 0 0 14px rgba(255, 59, 59, 0.1);   }
.risk-7  { border-color: rgba(115, 0, 255, 0.45);   box-shadow: 0 0 14px rgba(115, 0, 255, 0.1);   }
.risk-8  { border-color: rgba(115, 0, 255, 0.45);   box-shadow: 0 0 14px rgba(115, 0, 255, 0.1);   }

.risk-0  .telemetry-card-body svg { fill: #00e6e6; color: #00e6e6; }
.risk-1  .telemetry-card-body svg { fill: #ffee00; color: #ffee00; }
.risk-2  .telemetry-card-body svg { fill: #ff9900; color: #ff9900; }
.risk-3  .telemetry-card-body svg { fill: #ff3b3b; color: #ff3b3b; }
.risk-4  .telemetry-card-body svg { fill: #ffee00; color: #ffee00; }
.risk-5  .telemetry-card-body svg { fill: #ff9900; color: #ff9900; }
.risk-6  .telemetry-card-body svg { fill: #ff3b3b; color: #ff3b3b; }
.risk-7  .telemetry-card-body svg { fill: #7300ff; color: #7300ff; }
.risk-8  .telemetry-card-body svg { fill: #7300ff; color: #7300ff; }

/* Status card colours */
.status-complete { border-color: rgba(0, 255, 180, 0.45); box-shadow: 0 0 14px rgba(0, 255, 180, 0.1); }
.status-progress { border-color: rgba(0, 230, 230, 0.45); box-shadow: 0 0 14px rgba(0, 230, 230, 0.1); }

.status-complete .telemetry-card-body svg { fill: #00ffb4; color: #00ffb4; }
.status-progress .telemetry-card-body svg { fill: #00e6e6; color: #00e6e6; }

/* Alert card colours */
.alert-none     { border-color: rgba(0, 230, 230, 0.45); box-shadow: 0 0 14px rgba(0, 230, 230, 0.1); }
.alert-addict   { border-color: rgba(255, 238, 0, 0.45); box-shadow: 0 0 14px rgba(255, 238, 0, 0.1); }
.alert-financial { border-color: rgba(255, 153, 0, 0.45); box-shadow: 0 0 14px rgba(255, 153, 0, 0.1); }
.alert-AML      { border-color: rgba(255, 59, 59, 0.45);  box-shadow: 0 0 14px rgba(255, 59, 59, 0.1);  }
.alert-suicide  { border-color: rgba(115, 0, 255, 0.45);  box-shadow: 0 0 14px rgba(115, 0, 255, 0.1);  }

.alert-none     .telemetry-card-body svg { fill: #00e6e6; color: #00e6e6; }
.alert-addict   .telemetry-card-body svg { fill: #ffee00; color: #ffee00; }
.alert-financial .telemetry-card-body svg { fill: #ff9900; color: #ff9900; }
.alert-AML      .telemetry-card-body svg { fill: #ff3b3b; color: #ff3b3b; }
.alert-suicide  .telemetry-card-body svg { fill: #7300ff; color: #7300ff; }


/*** Modal ***/

.modal-content {
  background-color: #333 !important;
  border: 2px solid #111;
}


/*** Feedback ***/

#chat_feedback {
  width: 100%;
  max-width: 1200px;
  margin-top: 1.5rem;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0, 229, 209, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 229, 209, 0.07);
  box-sizing: border-box;
}

#chat_feedback h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00e6e6;
  margin: 0 0 1.25rem 0;
}

#chat_feedback .form-group {
  margin-bottom: 1rem;
}

#chat_feedback label {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 4px;
}

#chat_feedback .form-control {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
}

#chat_feedback .form-control:focus {
  border-color: rgba(0, 229, 209, 0.5) !important;
  box-shadow: 0 0 0 2px rgba(0, 229, 209, 0.12) !important;
  outline: none !important;
}

#chat_feedback .selectize-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  color: #fff !important;
}

#chat_feedback .selectize-dropdown {
  background: #2a2a2a !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}

#chat_feedback .selectize-dropdown .option {
  color: #ddd !important;
  font-size: 0.88rem;
}

#chat_feedback .selectize-dropdown .option:hover,
#chat_feedback .selectize-dropdown .option.active {
  background: rgba(0, 229, 209, 0.1) !important;
  color: #fff !important;
}

#chat_feedback .btn {
  margin: 0.5rem 0 0 0;
}


/*** Footer ***/

.app-footer {
  background-color: #222;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}


/*** Simulation Configuration Section (#div_data_demo) ***/

#div_data_demo {
  width: 100%;
  max-width: 1100px;
  margin-bottom: 2rem;
}

/* -- Header -- */

.sim-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sim-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.sim-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e8a030;
  margin: 0;
}

.sim-toggle {
  color: rgba(0, 229, 209, 0.7) !important;
  padding: 2px 6px !important;
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

.sim-subtitle {
  color: #aaa;
  font-size: 0.95rem;
  margin: 0;
}

/* -- Step headers (h4) -- */

.setup-left-panel h4,
.setup-right-panel h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00e6e6;
  margin: 0 0 1.5rem 0;
}

/* -- Section sub-headers (h5) in right panel -- */

.setup-right-panel h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin: 1.5rem 0 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 6px;
}

/* -- Form inputs: left panel -- */

.setup-left-panel .form-group {
  margin-bottom: 0;
}

.setup-left-panel label {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 4px;
}

.setup-left-panel .form-control,
.setup-left-panel .selectize-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(0, 229, 209, 0.2) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  min-height: 38px !important;
}

.setup-left-panel .selectize-dropdown {
  background: #2a2a2a !important;
  border: 1px solid rgba(0, 229, 209, 0.25) !important;
}

.setup-left-panel .selectize-dropdown .option {
  color: #ddd !important;
  font-size: 0.88rem;
}

.setup-left-panel .selectize-dropdown .option:hover,
.setup-left-panel .selectize-dropdown .option.active {
  background: rgba(0, 229, 209, 0.12) !important;
  color: #fff !important;
}

/* -- Form inputs: right panel -- */

.setup-right-panel .form-group {
  margin-bottom: 0;
}

.setup-right-panel label {
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 3px;
  display: block;
}

.setup-right-panel .form-control,
.setup-right-panel .selectize-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: 0.88rem !important;
  padding: 6px 10px !important;
  height: auto !important;
  min-height: 36px !important;
}

.setup-right-panel .selectize-dropdown {
  background: #2a2a2a !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}

.setup-right-panel .selectize-dropdown .option {
  color: #ddd !important;
  font-size: 0.88rem;
}

.setup-right-panel .selectize-dropdown .option:hover,
.setup-right-panel .selectize-dropdown .option.active {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

/* -- Multi-select tags (only affects inputs with multiple = TRUE) -- */

.setup-right-panel .selectize-control.multi .selectize-input .item {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 4px !important;
}

/* -- Field row (flex grid for metadata inputs) -- */

.sim-field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sim-field-row > .form-group,
.sim-field-row > .shiny-input-container {
  flex: 1;
  min-width: 90px;
  max-width: 270px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .sim-field-row {
    flex-direction: column;
  }
  .sim-field-row > .form-group,
  .sim-field-row > .shiny-input-container {
    max-width: 100%;
  }
}

/* -- Assessment helper text -- */

.setup_helper {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 10px;
}

.setup_helper p {
  color: #aaa;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

/* -- Info box in left panel -- */

.sim-info-box {
  background: rgba(0, 229, 209, 0.05);
  border-left: 3px solid rgba(0, 229, 209, 0.45);
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
  margin-top: 1.5rem;
}

.sim-info-box p {
  color: #aaa;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

.sim-info-box p + p {
  margin-top: 6px;
}

/* -- Disclaimer & run button -- */

.sim-disclaimer {
  text-align: center;
  color: #666;
  font-size: 0.78rem;
  margin: 1.5rem 0 0.75rem 0;
}

.sim-run-btn {
  display: block !important;
  width: 100% !important;
  max-width: 420px !important;
  margin: 0 auto !important;
  padding: 14px !important;
  font-size: 1rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  border-radius: 8px !important;
}
