/* Web Tools Kit – Frontend Styles */

.wtk-tool-box {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
  background: #f9f9f9;
  border-radius: 8px;
}

.wtk-tool-box h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.wtk-tool-box textarea {
  width: 100%;
  min-height: 150px;
  font-family: monospace;
  padding: 10px;
  margin-bottom: 15px;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wtk-tool-box button {
  background-color: #007cba;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
}

.wtk-tool-box button:hover {
  background-color: #005fa3;
}

.wtk-spinner {
  display: none;
  margin-top: 10px;
}

.wtk-spinner::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid #ccc;
  border-top-color: #007cba;
  border-radius: 50%;
  animation: wtk-spin 1s linear infinite;
}

@keyframes wtk-spin {
  to {
    transform: rotate(360deg);
  }
}

.wtk-css-output {
  white-space: pre-wrap;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  max-height: 300px;
  overflow-y: auto;
}
