.noticia-detalle {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.carousel img {
    width: 100%;
    height: auto;
    display: none;
}

.carousel img.active {
    display: block;
}


/* Botones de control del carrusel */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* Estilos del contenido de la noticia */

h1 {
    font-size: 24px;
    color: #333;
}

.fecha {
    color: #777;
    font-size: 14px;
}

.descripcion {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* Estilos para la responsividad */

@media (max-width: 768px) {
    .carousel {
        height: 250px;
    }
    h1 {
        font-size: 20px;
    }
    .descripcion {
        font-size: 14px;
    }
}

#quill-editor {
    display: none;
    /* Oculta el editor completo */
}

.ql-toolbar,
.ql-container {
    display: none;
    /* Por si Quill añade otros elementos visibles */
}