/* =========================
   EXPLORER CSS - LAYOUT
========================= */

.explorer-layout .container{
  max-width:920px;
}

.explorer-layout .container{
  display:block;
}

.explorer-layout .hero{
  margin-top:40px;
  margin-bottom:40px;
}

.explorer-layout .hero{
  margin-top:26px;
  margin-bottom:26px;
}

.explorer-layout .panel{
  margin-bottom:18px;
}

.explorer-layout .grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
}

.explorer-layout .top-layout{
  max-width:920px;
  margin:0 auto;
}

.explorer-layout .top-layout > .panel:first-child{
  margin-bottom:14px;
}

.explorer-layout .note{
  text-align:center;
  width:100%;

  margin:8px auto 12px;

  font-size:13px;
  opacity:0.9;
}

/* =========================
   EXPLORER BUTTON SYSTEM
========================= */

.explorer-layout .top-buttons,
.explorer-layout .bottom-buttons{
  display:flex;

  justify-content:center;
  align-items:center;

  flex-wrap:wrap;

  gap:14px;

  width:100%;

  margin:26px auto;
}

.explorer-layout .top-buttons{

  margin-bottom:30px;
}

.explorer-layout .prompt-area textarea{
  margin-top:18px;
}

.explorer-layout .bottom-buttons{
  margin-top:26px;
  margin-bottom:12px;

  flex-direction:column;
  align-items:center;
}

.explorer-layout .bottom-buttons .button{
  width:170px;
}

.explorer-layout .top-buttons .button,
.explorer-layout .bottom-buttons .button{
  display:inline-flex;

  justify-content:center;
  align-items:center;

  min-width:170px;
  min-height:48px;

  padding:12px 24px;

  text-align:center;
}

/* =========================
   BUTTON STABILITY
========================= */

.explorer-layout .top-buttons,
.explorer-layout .bottom-buttons{
  justify-content:center;
}

.explorer-layout .top-buttons .button,
.explorer-layout .bottom-buttons .button{
  width:190px;
  flex:0 0 190px;
}

.explorer-layout #statusMsg,
.explorer-layout #lockStatus{
  width:100%;
  text-align:center;
  margin-top:10px;
}

/* =========================
   FIX BUTTON SHIFTING
========================= */

.explorer-layout .bottom-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;

  flex-wrap:wrap;
}

.explorer-layout .bottom-buttons .button{
  width:190px;
  min-width:190px;
  max-width:190px;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
}

/* =========================
   LEGACY BUTTON ROW FIX
========================= */

.explorer-layout .button-row{
  display:flex;
  justify-content:center;
  align-items:center;

  flex-wrap:wrap;

  gap:10px;

  width:100%;

  margin:10px auto;
}

.explorer-layout .button-row .button{
  width:auto;

  display:inline-flex;
  justify-content:center;
  align-items:center;

  text-align:center;
}

.explorer-layout #statusMsg{
  width:100%;
  text-align:center;
  margin-top:12px;
  min-height:20px;
}

/* =========================
   EXPLORER TEXT ALIGNMENT
========================= */

.explorer-layout .prompt-area p{
  text-align:center;
  width:100%;

  margin-left:auto;
  margin-right:auto;
}

.explorer-layout .prompt-area p:last-child{
  margin-bottom:0;
}

.explorer-layout .prompt-area .status-message{
  text-align:center;
}

.explorer-layout .prompt-area .workspace-note{
  margin-top:8px;
  margin-bottom:18px;
}

.explorer-layout .status-message{
  display:block;
  width:100%;
  text-align:center;
  font-size:13px;
  opacity:0.75;

  margin-top:10px;
}

.explorer-layout .prompt-area{
  display:flex;
  flex-direction:column;
  align-items:center;

  width:100%;
}

.explorer-layout .prompt-area textarea{
  width:100%;
  max-width:100%;

  margin:10px auto 10px;
}

.explorer-layout .workspace-note{
  margin-top:2px;
  margin-bottom:6px;
}

.explorer-layout #statusMsg{
  margin-top:6px;
  margin-bottom:6px;
}

.explorer-layout .prompt-area p{
  margin-top:8px;
  margin-bottom:8px;
}

.explorer-layout textarea{
  min-height:120px;
}

.explorer-layout .flow-text{
  max-width:920px;

  margin:10px auto 20px;

  text-align:center;

  font-size:13px;
  opacity:0.82;

  letter-spacing:0.2px;
}

.explorer-layout .app-footer{
  text-align:center;

  margin-top:20px;
  padding-top:10px;

  font-size:13px;
  opacity:0.75;
}

@media(max-width:768px){
  .explorer-layout .grid{
    grid-template-columns:1fr;
  }
}