.AhomFont{
  font-family: Ahom;
  font-size:38px;
}

.Dehong{
    font-size: 25px;
}

.Shan, .Khamti, .DaiLue{
    font-size: 25px;
}

.Khamti{
    font-size: 28px;
    font-weight: bold;
    font-family: Khamti;
}

.Roman{
    /* font-family: sans-serif; */
    font-size: 18px;
}

.AhomUnicode{
    font-family: AhomUnicode;
    font-size:25px;
}

.converter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  padding-top:0px;
  min-height: 77vh;
}

/* Main card */
.converter-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Title */
.converter-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main);
}

/* Row layout */
.converter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

/* Fields */
.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field .label {
  font-size: 14px;
  margin-bottom: 5px;
}

select {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button{
  outline: none;
    border-radius: 5px;
    border: none;
}

/* Swap icon */
.swap {
  font-size: 20px;
  margin: 0 8px;
  cursor: pointer;
}

/* Textareas */
textarea {
  min-height: 120px !important;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
}

#sourceText{
    width: 100%;
    min-height: 90px;
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    border-radius: 8px;
    padding: 10px;
    transition: all .15s ease;
}

#sourceText::placeholder{
  color:auto
  /* TODO */
  /* color:var(--btn-border) */
}

/* Output box */
.output {
    min-height: 120px;
    background: var(--btn-bg);
    color: var(--btn-text);
    border-radius: 6px;
    padding: 15px;
    padding-top: 10px;
  transition: all .15s ease;
}

.options {
  margin-top: 10px;
  font-size: 14px;
}

#convertBtn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

#convertBtn:hover {
  opacity: 0.9;
}

#copyBtn{
    background: none;
    margin-left: -10px;
    margin-top: 10px;
}

#copyBtn i, #audioBtn i{
  color: var(--text-soft);
  font-size: 20px;
}