.wpdsv-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    background: #111;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.wpdsv-toolbar {
    padding: 10px;
    background: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpdsv-toolbar button {
    padding: 6px 12px;
    cursor: pointer;
}

.wpdsv-canvas-container {
    flex: 1;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wpdsv-canvas {
    max-width: 100%;
    max-height: 100%;
    background: #000;
}

.wpdsv-footer {
    padding: 8px 10px;
    font-size: 13px;
    color: #ccc;
    background: #181818;
}