.pav-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pav-user-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: background 0.2s;
}
.pav-user-item:hover {
    background: #f5f5f5;
}
.pav-avatar img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
}
.pav-name {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.pav-name:hover {
    text-decoration: underline;
}
.pav-editor-preview {
    padding: 20px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
