.eqsl-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.eqsl-modal.active {
    display: block;
}

.eqsl-modal-content {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.eqsl-modal-content > form {
	padding: 20px;
}

.eqsl-modal-content .close-eqsl-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.eqsl-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#eqsl-modal-form > p {
    margin-top: 20px;
}

#eqsl-modal-form button[type="submit"] {
    display: block; 
    margin-left: auto;
    margin-right: 0;
}

.eqsl-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
	background: white;
	padding: 5px;
	border-radius: 10px;
}