/* Text to Binary Tool Styles */
.textarea-input {
  width: 100%;
  min-height: 140px;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1rem;
  resize: vertical;
  background: #f9fafb;
}
.tool-button {
  background: #e53935;
  color: #fff;
  border: 2px solid #e53935;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.tool-button:hover, .tool-button:focus {
  background: #fff;
  color: #e53935;
  outline: none;
}
.result-container {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-top: 2rem;
  padding: 1.5rem;
}
@media (max-width: 600px) {
  .textarea-input {
    min-height: 90px;
  }
}
@media (max-width: 768px) {
  .desktop-header {
    display: none !important;
  }
  .mobile-header {
    display: block !important;
  }
}
@media (min-width: 769px) {
  .mobile-header {
    display: none !important;
  }
  .desktop-header {
    display: block !important;
  }
} 