.pd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.pd-modal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.pd-modal h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.pd-content {
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.pd-checkbox {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pd-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.pd-checkbox label {
    font-size: 14px;
    line-height: 1.4;
}

.pd-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.pd-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pd-btn-accept {
    background: #27ae60;
    color: white;
}

.pd-btn-accept:hover:not(:disabled) {
    background: #219a52;
}

.pd-btn-accept:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.pd-btn-reject {
    background: #e74c3c;
    color: white;
}

.pd-btn-reject:hover {
    background: #c0392b;
}

.pd-required {
    color: #e74c3c;
}