@import url('../styles.css');

/* ===== Additional Styles for Text Case Converter ===== */

.tool-box {
  max-width: 800px;
  margin: 0 auto;
}

#textInput {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  resize: vertical;
  font-size: 1rem;
  font-family: inherit;
  min-height: 180px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.btn.primary, .btn.secondary {
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn.primary:hover, .btn.secondary:hover {
  transform: scale(1.05);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--sky);
  color: var(--sky);
}

/* Info Section */
.article-section {
  max-width: 800px;
  margin: 50px auto;
  line-height: 1.7;
  color: var(--grey);
}

.article-section h2 {
  color: var(--white);
  margin-top: 32px;
  font-size: 1.4rem;
}

.article-section ul {
  margin: 10px 0 20px 20px;
}

.article-section p {
  margin-bottom: 12px;
}
