.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 12px;
}

.blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.green {
  background: #dcfce7;
  color: #166534;
}

.orange {
  background: #fef3c7;
  color: #92400e;
}

.purple {
  background: #ede9fe;
  color: #6d28d9;
}


.badge-green{
  background:#dcfce7;
  color:#166534;
}

.badge-orange{
  background:#fef3c7;
  color:#92400e;
}

.badge-red{
  background:#fee2e2;
  color:#991b1b;
}

.badge-blue{
  background:#dbeafe;
  color:#1d4ed8;
}

/* BUTTONS */
.btn-container {
  display: flex;
  flex-direction: row; /* Cambiado a row para que los botones se alineen horizontalmente */
  margin: 10px auto;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.btn-action {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  padding: 10px 16px;
  min-width: 130px;
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-action i {
  font-size: 16px;
  color: #ffffff;
}
.btn-action:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.primary {
  background: var(--mc_primary);
  color: var(--mc_primary-text);
}

.success {
  background: #16a34a;
  color: #fff;
}
.warning {
  background: #f59e0b;
  color: #fff;
}
.secondary {
  background: var(--mc_secondary);
  color: var(--mc_secondary_soft);
}

/*BOTONES DE BANDEJA REPORTES*/
.contenedor-reportes .btn {
  background-color: var(--mc_primary);
  border: 0px;
  border-radius: 7px;
  border-bottom: 2px solid #ff7f50;
  color: var(--mc_primary-text);
  padding: 8px;
  width: 80px;
  height: 40px;
  font-size: 15px;
  margin-bottom: 20px;
}
.contenedor-reportes .btn i {
  color: var(--mc_primary-text);
}
