body {
    background: #f5f7fb;
}

.pct-layout {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f5f7fb;
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, sans-serif;
}

/* 左侧 */
.pct-sidebar {
    width: 33%;
    background: #e9edf3;
    padding: 20px;
    border-radius: 12px;
}

/* 右侧 */
.pct-main {
    width: 67%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    min-height: 600px;
}

.pct-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.pct-chart-title {
    text-align: center;
    margin-bottom: 20px;
}

.pct-item {
    margin-bottom: 18px;
}

.pct-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.pct-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
}

textarea.pct-input {
    height: 120px;
    resize: vertical;
}

.pct-chart-wrap {
    position: relative;
    height: 500px;
}

.pct-chart {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
}

/* 按钮 */
.pct-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.pct-generate,
.pct-download,
.pct-share {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.pct-generate {
    background: #2563eb;
}

.pct-download {
    background: #16a34a;
}

.pct-share {
    background: #7c3aed;
}