/* Mejorar la visibilidad del botón Seleccionar todos - Mismo estilo que Aplicar filtro */
#select-all-blogs {
  /* Mismo estilo exacto que el botón Aplicar filtro de Drupal 7 */
  background: #e4e4e4 !important;
  background-image: linear-gradient(to bottom, #f6f6f6, #e4e4e4) !important;
  border: 1px solid #b4b4b4 !important;
  color: #333333 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  font-weight: normal !important;
  font-size: 1em !important;
  padding: 4px 17px !important;
  border-radius: 15px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 15px;
  cursor: pointer;
}

#select-all-blogs:hover {
  background: #e4e4e4 !important;
  border-color: #b4b4b4 !important;
}

#select-all-blogs:active {
  background: #e4e4e4 !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Estilos para el botón de "Seleccionar todos" cuando está procesando */
#select-all-blogs.processing {
  position: relative !important;
  padding-left: 35px !important;
  cursor: wait !important;
  opacity: 0.8 !important;
}

#select-all-blogs.processing:before {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  margin-top: -7px !important;
  width: 15px !important;
  height: 15px !important;
  border: 2px solid #b4b4b4 !important;
  border-top: 2px solid #666666 !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Estilo para el contador de selección */
.selection-counter {
  margin-left: 10px;
  font-weight: bold;
  color: #555555;
  display: inline-block;
}

/* Estilo para las filas seleccionadas */
.selected-row {
  background-color: #f4f9ff !important;
}

/* Mejorar visualización del estado de selección - SIN RECUADRO */
.selection-actions {
  margin-bottom: 15px;
  padding: 10px 0;
}

/* Mejor visualización del mensaje de info al enviar */
.form-submission-info {
  font-weight: bold;
  margin: 10px 0;
  padding: 10px 15px !important;
}

/* Destacar la columna de selección */
#blog-selection-table td:first-child {
  background-color: #f9f9f9;
  text-align: center;
}

/* Mejorar checkbox */
.blog-selector {
  transform: scale(1.3);
  cursor: pointer;
}
