/* Estilos generales */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 5rem;   /* tamaño horizontal */
    height: 5rem;  /* tamaño vertical */
    background-size: 5rem 5rem; /* asegura que el SVG se escale */
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-thumbnails button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.carousel-thumbnails button:hover {
    opacity: 0.7;
}

.carousel-item img {
    object-fit: cover;
}


.accordion-button{
    font-size: 1.5rem;
}

/* Estilos home page */
.home-text {
    font-size: 1.1em;
    text-align: justify;
    font-weight: 400;
    margin: 0 1.5em 0 0;
}
.mapa iframe {
    width: 100% !important;
    height: 400px; /* o el alto que quieras */
    border: 0;
}

/* Estilos publicaciones */
.dropdown-menu.filtros_publicaciones{
    max-height: 400px;
    overflow-y: auto;
}

.publication-item{
    background-color: #f7f7f7;
    min-height: 400px;
    font-size: 16px;
    /* border-right: solid 2rem #FFF; */
}
.publication-sinopsis{
    background-color: #f7f7f7;
    /* height: 400px; */
    /* font-size: 16px; */
    /* border-right: solid 2rem #FFF; */
}

.pagination{
    --bs-pagination-font-size: 1.5rem;
    /* font-size: 1.5rem; */
}

/* formulario create publicacion */
.scrollable-checkboxes {
    max-height: 300px;
    overflow-y: scroll;
}

/* Media Queries */
@media screen and (max-width: 768px){
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
    
    hr.red{
        margin-bottom: 2.5rem;
    }
}