.piad-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.piad-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 95%;
    max-width: 800px;
    max-height: 65%;
    overflow: overlay;
    border-radius: 10px;
    position: relative;
}

.piad-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#piad-popup-content h2 {
    text-transform: unset;
    font-size: 25px;
    margin-bottom: 15px;
    color: #000000bd;
}

#piad-popup-content h3 {
    text-transform: unset;
    font-size: 20px;
    color: #000000bd;
}

#piad-popup-content img {
    margin-top: 5px;
    margin-bottom: 15px;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 300px;
}

#piad-button {
    background: linear-gradient(135deg, rgb(255, 232, 123) 0%, rgba(255, 238, 162, 1) 50%, rgba(255, 232, 123, 1) 100%);
    color: #5E5E31;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    border: 1px solid #ffe87b;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#piad-button:hover {
    color: #80802B;
}

@media (max-width: 992px) {
    .piad-modal-content {
        max-height: 75%;
    }
}
@media (max-width: 768px) {
    .piad-modal-content {
        max-height: 80%;
    }
}
@media (max-width: 576px) {
    .piad-modal-content {
        max-height: 90%;
    }
    #piad-popup-content h2 {
        font-size: 22px;
    }
    
    #piad-popup-content h3 {
        font-size: 18px;
    }
}