/*
 * PV3D Blueprint Builder → Layout Studio bridge button.
 */

.pv3d-bb-ls-design-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #c7a849;
    color: #111827;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: background 120ms ease, transform 120ms ease;
    margin-top: 8px;
}

.pv3d-bb-ls-design-btn:hover {
    background: #b59536;
    transform: translateY(-1px);
}

.pv3d-bb-ls-design-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}
