.pdx-btn {
    padding: 10px 18px;
    border: none;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.pdx-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.65);
    z-index: 99999;
}

.pdx-content {
    background: #fff;
    padding: 5px;
    max-width: 450px;
    width: 90%;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 20px 40px rgba(0,0,0,0.25);
}

/* El contenedor controla el posicionamiento */
.pdx-container {
    position: relative;
    padding: 0; /* Asegura que el borde blanco no crece */
}


.pdx-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 99;
}