.case-converter-page {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  color: var(--text);
}

.case-converter-page h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.case-converter-page .description {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

textarea {
  width: 100%;
  min-height: 160px;
  background: #181818;
  color: #eee;
  font-family: monospace;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
  margin-bottom: 20px;
  font-size: 14px;
}

.tool-buttons,
.case-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

button {
  padding: 10px 16px;
  font-size: 14px;
  background-color: #222;
  color: var(--text);
  border: 1px solid #444;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  color: var(--link);
  border-color: var(--link);
}

.live-toggle {
  margin: 15px 0 25px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #ccc;
}

.text-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #333;
  font-size: 14px;
  color: #ccc;
  margin-top: 30px;
}

.text-info div {
  display: flex;
  justify-content: space-between;
}

.text-info strong {
  color: var(--link);
  font-weight: 600;
  margin-right: 6px;
}

.how-to-use {
  max-width: 800px;
  margin: 40px auto;
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 20px;
  color: var(--text);
}

.how-to-use h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--link);
}

.how-to-use ol {
  padding-left: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.how-to-use li {
  margin-bottom: 6px;
}
