/* Text Formatter 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;
}
.formatter-options { display: flex; gap: 0.5rem; margin-bottom: 1rem; justify-content: center; }
.formatter-btn { padding: 0.5rem 1.2rem; border: none; border-radius: 6px; background: #f1f5f9; color: #222; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.formatter-btn:hover, .formatter-btn:focus { background: #3b82f6; color: #fff; }
.result-container { background: #f8fafc; border-radius: 10px; padding: 1.5rem; margin-top: 1rem; text-align: left; }
#resultText { background: #f1f5f9; resize: vertical; }
#copyBtn { margin-top: 0.75rem; width: 100%; }
@media (max-width: 1200px) {
  .tool-ui {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
}
@media (max-width: 600px) { .tool-container { padding: 0 0.5rem; } .formatter-options { flex-direction: column; gap: 0.5rem; } } 