.title_pagina {
  font-size: 1.875rem;
  line-height: 1.2;
  align-items: center;
  color: black;
  font-weight: 700;
  gap: 0.625rem;
  display: flex;
}

.active-btn {
  background-color: rgb(11, 122, 64);
  font-size: 0.8125rem;
  color: rgb(255, 255, 255);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.5;
  border-radius: 0.75rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1rem;
  gap: 0.375rem;
  display: flex;
  text-transform: none;
  padding-right: 1rem;
  align-items: center;
}

.description_crci {
  color: rgb(106, 114, 129);
  line-height: 1.625;
  font-size: 15px;
  max-width: 48rem;
  margin-top: 0.375rem;
}


.container-crci {
  padding-top: 2rem;
  padding-bottom: 5rem;
  min-height: 631px;
}


.header-crci {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}


/* PANEL PRINCIPAL */
.actors-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

/* ENCABEZADO */
.actors-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.actors-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: rgb(19, 34, 57);
}

.actors-description {
  margin: 0;
  max-width: 850px;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}

/* BUSCADOR */
.actors-search {
  max-width: 400px;
}

.actors-search input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8dde5;
  border-radius: 10px;
  font-size: 14px;
  transition: all .2s ease;
}

.actors-search input:focus {
  outline: none;
  border-color: #1b3360;
  box-shadow: 0 0 0 3px rgba(27, 51, 96, .12);
}

/* BOTÓN */
.btn-estado-actores {
  padding: 10px 16px;
  background: #1b3360;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all .2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

.btn-estado-actores:hover {
  background: #162a4f;
  transform: translateY(-1px);
}

/* CONTENEDOR DE LA LISTA */
.actors-list-container {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

/* LABEL EXISTENTE */
.title-filters {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .actors-panel {
    padding: 18px;
  }

  .actors-header {
    flex-direction: column;
    align-items: stretch;
  }

  .actors-search {
    max-width: 100%;
  }

  .btn-estado-actores {
    width: 100%;
    justify-content: center;
  }
}







.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

/* Todos los botones */
.pagination button {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #4b5563;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}

/* Hover */
.pagination button:hover:not(:disabled):not(.active) {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* Página activa */
.pagination button.active {
  background: #0b7a3b;
  border-color: #0b7a3b;
  color: #fff;
  font-weight: 600;
}

/* Botones deshabilitados */
.pagination button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* Anterior y siguiente */
.pagination button:first-child,
.pagination button:last-child {
  width: auto;
  min-width: 90px;
  border-radius: 999px;
  padding: 0 14px;
}