/* Text Reverser Tool Styles */
.sidebar {
  height: calc(100vh - 120px - 180px) !important;
  min-height: 0 !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
}
#textInput, #resultText {
  width: 100%;
  min-height: 220px;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #f9f9f9;
  resize: vertical;
  box-sizing: border-box;
}
.tool-ui {
  max-width: 900px;
  width: 100%;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(229,57,53,0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.reverser-options {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  align-items: center;
}
.reverser-options label {
  cursor: pointer;
  font-weight: 500;
}
.result-container {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}
#copyBtn {
  margin-top: 0.75rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .tool-ui {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
} 