.repair-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

.form-section {
  margin-bottom: 24px;
}

.form-section h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.required::after {
  content: " *";
  color: #d32f2f;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.select-btn {
  padding: 12px 16px;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  word-break: break-word;
}

.select-btn:hover {
  border-color: var(--accent);
  background: var(--input-bg);
}

.select-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.radio-group {
  margin-bottom: 16px;
}

.radio-label input[type="radio"] {
  display: none;
  margin-right: 12px;
  cursor: pointer;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.radio-label:hover {
  background: var(--input-bg);
  border-color: var(--accent);
}

.radio-label input[type="radio"]:checked {
  accent-color: var(--accent);
}

.radio-label input[type="radio"]:checked + span {
  color: var(--accent);
  font-weight: 600;
}

.radio-label input[type="radio"]:checked + span::before {
  content: "✓ ";
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover:not(:disabled) {
  background: var(--accent-2);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px;
  border-radius: 8px;
  background: #4caf50;
  color: white;
  text-align: center;
  z-index: 1000;
  animation: slideUp 0.3s ease-in-out;
}

.toast.error {
  background: #d32f2f;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

@media (max-width: 480px) {
  .button-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
