.plm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plm-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.plm-modal-content h2 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #2c3e50;
}

.plm-modal-content p {
    margin: 0 0 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

.plm-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.plm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.plm-btn-primary {
    background: #4a9d9c;
    color: #fff;
}

.plm-btn-primary:hover {
    background: #3d8584;
}

.plm-btn-secondary {
    background: #e74c3c;
    color: #fff;
}

.plm-btn-secondary:hover {
    background: #c0392b;
}

.plm-btn-cancel {
    background: #fff;
    color: #2c3e50;
    border: 2px solid #5a6c7d;
}

.plm-btn-cancel:hover {
    background: #f8f9fa;
}

.plm-btn-danger {
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
}

.plm-links-list {
    max-height: 300px;
    overflow-y: auto;
    margin: 20px 0;
}

.plm-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.plm-link-item:last-child {
    border-bottom: none;
}
