.cards-categorias {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 100px;
  padding: 12px;
  margin-bottom: 100px; }

.card-categoria {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9);
  transition: 0.2s ease;
  width: 280px;
  margin: 0 auto; }

.card-categoria:hover {
  transform: translateY(-2px); }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; }

.card-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600; }

.tag {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #fff; }

.tag.ativo {
  background: #28a745; }

.tag.inativo {
  background: #dc3545; }

.card-info p {
  margin: 6px 0;
  font-size: 0.9rem; }

.icon.green {
  color: #28a745; }

.icon.red {
  color: #dc3545; }

.card-actions {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px; }

.btn {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  width: 100%; }

.btn.ver {
  background: #5600CF;
  color: white; }

.btn.editar {
  background: #28a745;
  color: white; }

.btn.deletar {
  background: #e9b8b8;
  color: #9b0000; }

/*# sourceMappingURL=categoriesAdmin.css.map */
