.decoder {
  white-space: normal;
  width: 90%;
  margin: 0 auto 20px auto;
}
.decoding {
  position: relative;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12), inset -5px -5px 5px rgba(94,93,91,0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: rgba(250, 247, 242, 0.2);
  border: 1px solid #CCC9C6;
  width: 100%;
  min-width: 0;
  margin: auto;  
  box-sizing: border-box;
}

.decoding:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18), inset -5px -5px 5px rgba(94,93,91,0.05), 0 0 15px rgba(32,135,199,0.2);
  transition: all 0.15s ease;
  border-color: #5AA1F6;
}
#code {
  width: 100%;
  padding: 6px 8px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: "Jura", sans-serif;
  border: 2px inset #D0E6EB;

}

.decodeTxt {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  color: #2087C7;
  gap: 6px;
}

#result {
  font-size: 13px;
  color: #333;
  width: 100%;
  white-space: pre-line;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .decoder {
    white-space: normal;
    width: 90%;
    margin: 30px auto 100px auto;
   }
  .decodeTxt {
    font-size: 12px;
  }
}