body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--gray-bg);
  padding: 30px;
}
/* Tool Page */
.tool-section {
  padding: 60px 16px;
}

.container {
  max-width: 700px;
  margin: auto;
  background: var(--white-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

h1 {
  margin-bottom: 15px;
  font-size: 26px;
  color: var(--black-text);
  text-align: center;
}

.tool-desc {
  margin-top: 8px;
  color:var(--gray-text);
  text-align: center;
}
.converter-container {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

textarea {
  width: 100%;
  height: 150px;
  margin: 15px 0;
  padding: 10px;
  font-size: 18px;
  border-radius: 10px;
  box-sizing: border-box;
  resize: vertical; 
}

#copyBtn {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background: #0073e6;
  color: white;
  cursor: pointer;
}

#copyBtn:hover {
  background: #005bb5;
}

Select {
  width: 80%;
  max-width: 300px;
  background-color:rgba(127, 255, 212, 0.795);
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 10px;
  /* margin: 15px 0; */
  font-size: 20px;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
}

select:hover{
    background-color:aquamarine;
}
@font-face {
    font-family: 'LimonS1';
    src: url('fonts/LimonS1.ttf'); /* Ensure you have the font file */
}

.limon-font {
    font-family: 'LimonS1', sans-serif;
    font-size: 24px;
}

.unicode-font {
    font-family: 'Khmer OS Battambang', sans-serif;
    font-size: 18px;
}

#Photo{
  display: flex;
  justify-content: center;   /* center horizontally */

}