*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
::-webkit-scrollbar-track
{
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	
	background-color: #3d1a1a;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #3d1a1a;
}

::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #8b4040;
}
.white{
  color:rgb(238, 238, 238);
}
.blue{
  color:#ff9e9e;
}
a{
  text-decoration: none;
  color: rgb(238, 238, 238);
}
body{
  background-color:#2a1215;

  height: 100vh;
  font-family: 'Fira Code', monospace;
  display:flex;
  align-items: center;
  justify-content: center;
}
.loader{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  transition: opacity 0.4s ease;
  z-index:10;
}
.loader.fade-out{
  opacity:0;
  pointer-events:none;
}
.loader-text{
  font-size:15px;
  color:#d4a0a0;
  letter-spacing:0.02em;
}
.loader-dots::after{
  content:"";
  animation: loader-dots 1.4s steps(4, end) infinite;
}
@keyframes loader-dots{
  0%{content:"";}
  25%{content:".";}
  50%{content:"..";}
  75%{content:"...";}
  100%{content:"";}
}
.loader-bar{
  width:220px;
  height:2px;
  background-color:rgba(139, 64, 64, 0.35);
  border-radius:2px;
  overflow:hidden;
}
.loader-bar-fill{
  height:100%;
  width:0;
  background-color:#e87878;
  border-radius:2px;
  animation: loader-progress 2s ease-out forwards;
}
@keyframes loader-progress{
  from{width:0;}
  to{width:100%;}
}
.container--hidden{
  opacity:0;
  pointer-events:none;
}
.container{
  display:flex;
  flex-direction: column;
  width:100%;
  max-width:800px;
  height:500px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #6b3030;
  margin:20px;
  cursor: text;
  box-shadow: 0 8px 32px rgba(80, 20, 20, 0.45);
  transition: opacity 0.4s ease;
}
.menu{
  display:flex;
  align-items: center;

  text-align: center;
  flex-direction: row;
  width: 100%;
  height: 24px;
  background-color: #4a2529;
  padding: 0 8px;
  cursor:default;
}
.menu .button{
  width:12px;
  height:12px;
  border-radius:50%;
  margin-right:8px;
  cursor:pointer;
}
.red{background-color:#F5544D;}
.yellow{background-color:#FABD2F;}
.green{background-color:#47D043;}
div.title{
  flex:1;
  text-align:center;
}
.menu h1{
  font-size:13px;
  color:#d4a0a0;

}
.buttons-flex{
  position: absolute;
  display:flex;
  flex-direction: row;
}
@media (max-width:500px){
  .buttons-flex{
    position: unset;
    display:flex;
    flex-direction: row;
  }
}
@media (max-width:330px){
  .menu h1{
    display:none;
  }
}
#app{
  display:flex;
  flex-direction: column;
  background-color:#1a0e10;
  width:100%;
  height:100%;
  padding:8px;
  overflow: auto;
}
p{
  font-size:16px;
  color:rgb(238, 238, 238);
  padding:8px 0;
}
h2{
  font-size:16px;
  color:rgb(238, 238, 238);
}
p.code{
  color:#e87878;
  margin-left:8px;
}
span.text{
  margin-left:16px;
  color:white;
}
p.path{
  color:#ffc9c9;
}
p.path span{
  color:#c45c5c;
}
p.path span + span{
  color:#ffaaaa;
}

.sucess{
  color:#ffb4b4;
}
.error{
  color:#ff6b6b;
}
p.response{
  color:rgb(238, 238, 238);
}
p.bullet{
  padding:4px 0 4px 12px;
  color:#e8d0d0;
}
pre.terminal-output{
  font-family: 'Fira Code', monospace;
  font-size:14px;
  color:#e8d0d0;
  padding:8px 0 8px 4px;
  white-space: pre-wrap;
  line-height: 1.5;
}

input{
  border:none;
  background-color: unset;
  color:rgb(238, 238, 238);
  width:100%;
  font-size:16px;
  font-family: 'Fira Code', monospace;
}
input:focus{
  border:none;
  outline: none;
  box-shadow: none;
  background-color: unset;
  
}
.type{
  display:flex;
  align-items: center;
  padding:8px 0;
}
.type2{
  display:flex;
  align-items: center;
  padding:8px 0;
}
.icone{
  color:#ff9e9e;
  padding-right:8px;
}

.icone.error{
  color:#ff6b6b;
}
