/* Estilos base del modal */
.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    font-family: 'Quicksand', sans-serif;
    overflow-y: auto;
}

.modalDialog p {
    text-align: justify;
}

h2 {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog > div {
    width: 100%; /* Modifica el ancho del modal */
    max-width: 700px; /* Establece un ancho máximo */
    position: relative;
    margin: 5% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #a5a5a5a1);
    background: -webkit-linear-gradient(#fff, #a5a5a5a1);
    background: -o-linear-gradient(#fff, #a5a5a5a1);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    font-family: 'Quicksand', sans-serif;
}

.content {
    max-height: 350px;
    overflow-y: auto;
    padding: 15px;
    text-align: justify;
}

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    font-family: 'Quicksand', sans-serif;
}

.close:hover { background: #060809; }

.aceptar,.rechazar {
    border-radius: 8px;
    background-color: #f0f4f4f4;
    color: black;
    padding: 5px;
    height: 40px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    margin-top: 20px;

}

.aceptar{
	margin-left: 10px;
}
.rechazar{
	margin-right: 10px;
}

.boton {
    text-align: center;
}

.aceptar:hover {
    background-color: aqua;
}

.rechazar:hover {
    background-color: aqua;
}


/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .modalDialog > div {
        width: 70%; /* Cambia el ancho del modal para pantallas pequeñas */
		height: auto;
		font-size: 10px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

	.modalDialog h2{
		font-size: 12px;
	}

    .content {
        padding: 3px;
       
    }

	
}
