/* Robots.txt Generator - Tool-specific styles */

.robots-bot-group {
  margin-bottom: 20px;
}
.robots-bot-group:last-child {
  margin-bottom: 0;
}

.robots-group-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin: 0 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #f3f4f6;
}

.robots-bot-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.robots-bot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: background 0.15s;
}
.robots-bot-item:hover {
  background: #f0fdf4;
}

.robots-bot-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.robots-bot-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.robots-bot-desc {
  font-size: 12px;
  color: #9ca3af;
}

.robots-bot-select {
  padding: 5px 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  min-width: 80px;
}
.robots-bot-select:focus {
  outline: none;
  border-color: var(--inimino-primary, #5D8A66);
}

/* Output header */
.tool-output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-output-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Section title */
.tool-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
}

@media (max-width: 640px) {
  .robots-bot-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .robots-bot-select {
    width: 100%;
  }
  .tool-output-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tool-output-actions {
    width: 100%;
  }
  .tool-output-actions .tool-btn {
    flex: 1;
  }
}
