.admin-sol {
}

.admin-sol thead {
    border-bottom: 1px solid #9E9E9D;
    background: #F5F5F5;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    color: #484847;
    font-family: "Nunito Sans";
    line-height: 16px;
    padding-left: 8px;
    padding-right: 8px;
}

.admin-sol .categorias {
    display: flex;
    flex-direction: column;
}

.admin-sol .name {
    width: 194px;
}

.admin-sol h1 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.admin-sol .btn-new-solution {
    background-color: #CE0E71;
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    padding: 8px 16px;
    align-items: flex-start;
    gap: 10px;
}

.admin-sol .btn-new-solution:hover {
    background-color: #b50061;
    color: white;
}

.admin-sol .table-responsive {
    margin-top: 20px;
    margin-bottom: 0;

}

.admin-sol .badge {
    font-size: 14px;
    border-radius: 4px;
}

.admin-sol .bg-success {

    color: #090909;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    border: 1px solid #7BCF7B;
    background-color: #E8FFE7 !important;

}

.admin-sol .bg-warning {
    color: #090909 !important;
    border: 1px solid #E4AE2A;
    background-color: #FFF7E0 !important;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
}

.admin-sol .bg-danger {
    color: #090909;
    background-color: #FFF3F1 !important;
    border: 1px solid #FF8B7E;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;

    /*animation: blinkFade 1.5s ease-in-out infinite;*/
}

@keyframes blinkFade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.admin-sol .action-icons i {
    font-size: 18px;
    color: #CE0E71;
    cursor: pointer;
}

.admin-sol .action-icons i:hover {
    color: #b50061;
}

.admin-sol .calendar {
    margin-right: 4px;
}

.admin-sol td {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    height: 64px;
}

.admin-sol .btn-filter {
    border: none;
}

.admin-sol .pagination-section {
    border-top: 1px solid #E1E1E0;
    border-bottom: 1px solid#E1E1E0;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    margin-top: 0;
    background-color: #F5F5F5;
    margin-left: 0px;
    margin-right: 0px;

}

.admin-sol .pagination-section .btn-light {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    color: #333;
}

.admin-sol .pagination-section .btn-light:hover {
    background-color: #e9ecef;
    color: #333;
}

.admin-sol .pagination-section .dropdown-toggle {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.admin-sol .pagination {
    margin-bottom: 0;
    font-size: 14px;
}

.admin-sol .pagination .page-item .page-link {
    color: #090909;
    border: none;
    padding: 4px 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    background-color: #F5F5F5;
}

.admin-sol .pagination .page-item .page-link:hover {
    background-color: #f5f5f5;
    color: #CE0E71;
}

.admin-sol .pagination .page-item .page-link.active {
    background-color: #CE0E71;
    border-color: #CE0E71;
    color: white;
}

.admin-sol .pagination-section .bi {
    font-size: 16px;
    color: #333;
}

.admin-sol .pagination-section .bi:hover {
    color: #CE0E71;
}

.admin-sol button .btn-left,
.btn-right {
    border: none;
    background-color: #F5F5F5;
}

.admin-sol .bi-star-fill,
.bi-star-half,
.bi-star {
    color: #CE0E71 !important;
}

.admin-sol .product-link {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-sol .product-link:hover {
    color: #CE0E71;
}

/* --- Notificación base --- */
.notice {
  display: flex;
  align-items: center;           /* centra icono y texto */
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  animation: fadeInUp 0.6s ease-out;  /* duración ampliada */
}

/* Quitar margen por defecto del párrafo */
.notice p {
  margin: 0;
}

/* Variante “success” */
.notice-success {
  background-color: #E8FFE7;
  border: 1px solid #7BCF7B;
  border-left: 4px solid #7bcf7b;
  color: #090909;
  position: relative;
}

/* Icono de check bien centrado */
.notice-success::before {
  content: "✔";
  display: inline-flex;  /* para que align-self funcione */
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  height: 1em;           /* igual altura que la línea de texto */
  flex-shrink: 0;
  color: #187120;
}

/* Animación de aparición */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Primer TH — esquina superior izquierda */
.admin-sol .table thead th:first-child {
  border-top-left-radius: 5px;
}

/* Último TH — esquina superior derecha */
.admin-sol .table thead th:last-child {
  border-top-right-radius: 5px;
}