.contenedor {
    width: 85%;
    margin: 0 auto;
    padding: 20px;
	border: 1px solid #ccc;
	overflow: auto;
}

.imagennot {
    float: left; 
    margin-right: 15px; 
    margin-bottom: 10px; 
    max-width: 350px; 
	height: auto;
	overflow: auto;
}

.texto {
	text-align: justify;
}

.centrado{
	text-align: center;
}

.paginaciones {
    float: left;
    margin-left: 0.5em;
    background-color: #3A2222;
    color: #dfdfdf;
    min-width: 1em;
    padding: 5px;
    font-weight: bold;
    border-width: 1px;
    border-style: solid;
    border-color: #3A2222;
}

div.paginaciones:hover, .seleccion{
    background-color: #dfdfdf;
    color: #3A2222;
}

.tablaPaginacion{
    margin: auto;
    max-width: 90%;
    display: grid;
    place-items: center; 
    grid-template-columns: 100%;
    padding: 10px;
}

#formulariofull{
	position: fixed;
	visibility: hidden;
    z-index: 10005;
    height: 100vh;
    width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
}

#formfondo{
	height: 100vh;
	width: 100%;
	background-color: rgba(100, 0, 0, 0.5);
	position: absolute;
}

#formulario{
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    background-color: #fcfa9e;
    position: relative;
	z-index: 10005;
    padding: 14px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -webkit-box-shadow: -5px 5px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -5px 5px 3px 0px rgba(0,0,0,0.75);
    box-shadow: -5px 5px 3px 0px rgba(0,0,0,0.75);
    color: black;
    border-width: 2px;
    border-color: #053B50;
    border-style: solid;
}

#divimg {
	width: 100%;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

#divimg img {
            max-width: 100%; /* Evita que la imagen sea más ancha que el div */
            height: auto; /* Mantiene la proporción */
            width: auto; /* Permite que la imagen conserve su tamaño original */
            display: block; /* Evita espacios extra */
}

.botonCerrar {
    width: 20px;
    height: 20px;
    position: fixed;
    background-image: url("../img/cerrar.png");
    background-size: cover;
    background-position: center;
    right: 10px;
    top: 10px;
}

.botonCerrar:hover {
    background-image: url("../img/cerrarverde.png");
    background-size: cover;
    background-position: center;
}

.borde:hover {
	background-color: #3A2222 !important;
	color: white !important;
}