.sin-datos,
.error-datos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;              /* Ocupa todo el alto del contenedor */
    border-radius: 6px;
    font-size: 13px;
    z-index: 5;
}

/* Diferenciación visual */
.sin-datos {
    color: #666;
    background: #fff; /* Más opaco para mejor legibilidad */
    border: 1px dashed #838485;              /* Borde punteado para "sin datos" */
}

.error-datos {
    color: #b02a37;
    background: rgba(255, 243, 243, 0.95);   /* Más opaco para mejor legibilidad */
    border: 1px solid #f5c2c7;
}

/* Estilos adicionales para el ícono y texto */
.sin-datos span,
.error-datos span {
    display: block;
    line-height: 1.5;
}

.sin-datos .icono-sin-datos,
.error-datos .icono-error {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.7;
}