  /* Minimal CSS for Styling */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  p {
    /* text-align: center; */
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: none;
    box-sizing: border-box;
  }
  
  .stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
  }
  
  .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    background: #e4e4e4;
    padding: 10px;
    border-radius: 20px;
  }
  
  .center {
    text-align: center;
  }
  
  .convert-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .convert-btn:hover {
    background-color: #0056b3;
  }
  
  .action-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .action-buttons button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #28a745;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #downloadBtn {
    background-color: #17a2b8;
  }
  
  #clearBtn {
    background-color: #dc3545;
  }
  
  .action-buttons button:hover {
    opacity: 0.9;
  }
  
  .tool-description {
    margin-top: 20px;
    line-height: 1.6;
  }
  
  .tool-description h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .tool-description ul {
    padding-left: 20px;
  }
  
  .codespan {
    background: #ff99002e;
    border: 1px solid #ff99009c;
  }
  
  .codespan+.codespan {
    background: #44ff002e;
    border: 1px solid #2bff009c;
  }
  

  

header {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

header h1 {
  color: white;
  font-size: 32px;

}

header p {
  color: white;
  margin: 10px 0 0;
  line-height: 24px;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #2c3e50;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

footer a {
  color: #1489f7;
  text-decoration: none;

}

footer p {
  color: #fff;
  margin: 0;
}

footer a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.toolWrapper {
  border: 1px solid #8b8b8b;
  padding: 15px;
  border-radius: 15px;
  margin: 0 0 60px 0;
  background: #f7f7f7;
}
.tool-description p, .tool-description ol{
  color: #333;
}
