.text-justify {
    text-align: justify;
}

.pointer {
    cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.card-img-custom {
    object-fit: cover !important;
    /* Ajusta la imagen para cubrir el contenedor */
    width: 100% !important;
    /* Ocupa el 100% del ancho del contenedor */
    height: 200px !important;
    /* Ajusta la altura deseada */
}

.card-img-custom-300 {
    object-fit: cover !important;
    /* Ajusta la imagen para cubrir el contenedor */
    width: 100% !important;
    /* Ocupa el 100% del ancho del contenedor */
    height: 300px !important;
    /* Ajusta la altura deseada */
}

.card-img-custom-mini {
    object-fit: cover !important;
    /* Ajusta la imagen para cubrir el contenedor */
    width: 100px !important;
    /* Ocupa el 100% del ancho del contenedor */
    height: 100px !important;
    /* Ajusta la altura deseada */
}

.noticia-componentes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.componente-bloque {
    border: 1px solid #ccc;
    padding: 12px;
    cursor: move;
}

.componente-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.componente-cuerpo {
    margin-top: 8px;
    font-size: 14px;
}
/* 
.list-group-item {
    color: silver;
    background-color: none !important; 
} */
/* Estilo global para forzar texto oscuro en paginación de Tailwind */
body.dark-theme nav[role="navigation"] button {
    color: #e5e7eb !important; /* text-gray-200 */
    background-color: #1f2937 !important; /* bg-gray-800 */
    border-color: #374151 !important; /* border-gray-700 */
}
body.dark-theme .card {
    background-color: #1e1e1e !important;
    color: #ffffff !important;
    border-color: #333 !important;
}
