.chat_container {
  max-width: 1400px;
  margin: auto;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  border: 1px solid #b9b9b9;
  border-radius: 15px;
}

.interface{
    background-color: #1D1E22 ;
    width: 100%;
    height: 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding-left: 1px;
    padding-right: 1px;
    margin-left: -1px;
}

.red_circle{
    margin-top: 10px;
    background-color: #EC6B41;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-left: 10px;
}

.yellow_circle{
    margin-top: 10px;
    background-color: #F5C74F;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}

.green_circle{
    margin-top: 10px;
    background-color: #61C554;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}

.interface p{
  color: white;
  font-size: 24px;
  height: 24px;
  margin: auto;
  padding-right: 80px;
}

.message{
  width: 100%;
  max-width: 930px;
  margin: auto;
}

.message p{
  font-size: 24px;
  color: #1D1E22;
  margin-bottom: 40px;
}

.terminal_buttons{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: auto;
  height: 24px;
  margin-bottom: 80px;
}

.terminal_buttons p{
  align-items: flex-start;
  font-size: 24px;
  color: #1D1E22;
  margin: 0;
}

.terminal_buttons a{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: auto;
  cursor: pointer;
  margin-bottom: 80px;
}

.choice-group {
  display: flex;
  flex-direction: row;
  margin: auto;
  gap: 1rem;
  font-size: 24px;
  padding-right: 80px;
  gap: 100px;
}

.sim, .nao {
  text-decoration: none;
  color: #1D1E22;
  position: relative;
  transition: color 0.3s ease;
}

/* Arrow on the left */
.sim::before,
.nao::before {
  content: '>';
  margin-right: 0px;
  color: #d4c092;
  opacity: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* Hover on Sim */
.sim:hover {
  color: #d4c092;
  text-decoration: underline;
}
.sim:hover::before {
  opacity: 1;
}
.sim:hover ~ .nao {
  color: #1D1E22;
  text-decoration: none;
}

/* Hover on Não */
.nao:hover {
  color: #d4c092;
  text-decoration: underline;
}
.nao:hover::before {
  opacity: 1;
}
.nao:hover ~ .sim {
  color: #1D1E22;
  text-decoration: none;
}

.rest_text{
  display: block;
}

.mobile_text{
  display: none;
}

@media only screen and (max-width: 800px) and (min-width: 300px){
  .message p{
    font-size: 18px;
    color: #1D1E22;
    margin-bottom: 40px;
  }

  .choice-group {
    display: flex;
    flex-direction: row;
    margin: auto;
    gap: 1rem;
    font-size: 18px;
    padding-right: 80px;
    gap: 100px;
  }

  .rest_text{
    display: none;
  }

  .mobile_text{
    display: block;
    
  }

}