.pck-wrapper {
    max-width: 950px;
    margin: 20px auto;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, sans-serif;
}

.pck-subheading {
    color: #64748b;
    margin-bottom: 25px;
}

.pck-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 25px;
}

@media (max-width: 820px) {
    .pck-grid {
        grid-template-columns: 1fr;
    }
}

.pck-card {
    margin-bottom: 16px;
}

.pck-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #1e293b;
}

.pck-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.92rem;
    background-color: #fff;
    color: #0f172a;
}

.pck-select:focus {
    border-color: #2563eb;
    outline: none;
}

.pck-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.pck-summary-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Status Box */
.pck-status-box {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.pck-status-neutral {
    background: #e2e8f0;
    color: #475569;
}

.pck-status-ok {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.pck-status-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

#pck-summary-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

#pck-summary-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    line-height: 1.3;
}

.pck-metrics {
    margin-top: 15px;
}

.pck-metric-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.pck-price-item strong {
    font-size: 1.3rem;
    color: #2563eb;
}

.pck-btn {
    width: 100%;
    margin-top: 15px;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pck-btn:hover {
    background: #1d4ed8;
}
/* Budget Box Styling */
.pck-budget-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.pck-budget-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.pck-budget-inputs input[type="number"] {
    width: 140px;
    padding: 9px 12px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-weight: 600;
}

.pck-btn-random {
    background: #059669;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pck-btn-random:hover {
    background: #047857;
}