/* public/css/settings.css — Command prefix settings page styles */

.settings-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
}

.settings-card h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.settings-card .subtitle {
  color: #6a6a6a;
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.settings-card label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: #1a1a1a;
}

.settings-card input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  margin-bottom: 1rem;
}

.settings-card input[type="text"]:focus {
  border-color: #1a1a1a;
}

.settings-card button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.settings-card button:hover {
  background: #333;
}

.feedback {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.feedback.hidden { display: none; }
.feedback.success { color: #16a34a; }
.feedback.error { color: #dc2626; }