.epw-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.epw-modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 20px 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.epw-close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.epw-form p {
    margin-bottom: 15px;
}

.epw-form input,
.epw-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.epw-form input:focus,
.epw-form textarea:focus {
    outline: none;
    border-color: #0071a1;
    box-shadow: 0 0 3px rgba(0,113,161,0.4);
}

.epw-form textarea {
    min-height: 100px;
}

.epw-form button.button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}
