/* Nuevo estilo para techcat.css acorde al diseño general */
.tech-category {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.type_a { border-left: 4px solid #3b82f6; }
.type_b { border-left: 4px solid #f59e0b; }
.type_c { border-left: 4px solid #8b5cf6; }
.type_d { border-left: 4px solid #10b981; }

.tech-category h3 {
  color: #0f172a;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-item {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.tech-item strong {
  color: #1e293b;
  font-size: 16px;
  display: block;
}

.tech-category ul {
  margin: 0;
  padding-left: 20px;
  color: #475569;
}

.tech-category li {
  margin-bottom: 8px;
}

.tech-category li strong {
  color: #0f172a;
}

.view-note {
  margin-top: 40px;
  padding: 15px;
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
}

.view-note p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  text-align: center;
}
