.pudo-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.pudo-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    border: none;
    border-radius: 8px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.pudo-modal-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pudo-modal-header h2 {
    margin: 0;
    font-size: 1.2em;
}

.pudo-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.pudo-close:hover {
    color: #000;
}

.pudo-modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.pudo-modal-body iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.pudo-modal-footer {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    text-align: right;
}

.pudo-modal-footer button {
    margin-left: 10px;
}

.pudo-selected-info {
    background-color: #e7f3ff;
    border: 1px solid #b3d7ff;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
}

.pudo-selected-info span {
    display: block;
    margin-bottom: 5px;
}

.pudo-admin-display {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pudo-modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 90vh;
    }

    .pudo-modal-body iframe {
        height: 400px;
    }
}