body {
  font-family: 'Hind Siliguri';
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: #399dd3;
}

.banglaCode {
  padding: 5px;
  font-size: 20px;
}

.textarea-wrapper {
  display: flex;
  width: 80%;
  max-width: 1000px;
  border: 1px solid #444;
  background-color: #272822;
  font-family: 'Hind Siliguri';
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  overflow: hidden;
  height: 300px; /* fixed height */
}

.line-numbers-wrapper {
  background-color: #272822;
  color: #999;
  text-align: right;
  padding: 10px 5px 10px 10px;
  user-select: none;
  font-family:  'Hind Siliguri';
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  border-right: 1px solid #444;
}

.textarea-scroll-wrapper {
  width: 100%;
  overflow: auto;
}

textarea.code-area {
  background-color: transparent;
  color: #f8f8f2;
  border: none;
  padding: 10px;
  resize: none;       /* disable manual resize */
  font-family:  'Hind Siliguri';
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  height: 300px;      /* fixed height */
  white-space: pre;   /* prevent wrapping */
  overflow: auto;     /* scroll inside textarea */
  box-sizing: border-box;
}

/* Converted Code */
.converted-code-wrapper {
  background-color: #272822;
  color: #f8f8f2;
  font-family: 'JetBrains Mono', monospace;
  width: 80%;
  max-width: 1000px;
  height: 300px;
  overflow: auto;
  border: 1px solid #444;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 10px;
}

.converted-code-wrapper pre {
  margin: 0;
  font-size: 16px;
}

/* Buttons */
.c-convert {
  font-size: 20px;
  cursor: pointer;
  border: none;
  background-color: #006AB5;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px 5px;
  text-decoration: none;
  font-family: 'Hind Siliguri';
}

.c-convert:hover {
  opacity: 0.7;
}

.copy-button {
  background: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
  font-family: 'Hind Siliguri';
}

.copy-button:hover {
  opacity: 0.7;
}

.code-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1000px;
  align-items: center;
}

/* Run buttons */
.run-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

a.c-convert {
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 10px;
  display: inline-block;
}



