/* ── Wish Copy Button ── */

.wcb-wrap {
    margin-bottom: 1.2em;
    border: 1px solid #e8eaf6;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wcb-wrap:hover {
    border-color: #9fa8da;
    box-shadow: 0 2px 8px rgba(92, 106, 196, 0.12);
}

/* The paragraph / block — NO right padding needed anymore */
.wcb-wish {
    padding: 14px 16px 10px 16px;
    line-height: 1.7;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Button bar sits BELOW the wish text */
.wcb-btn-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0 10px 10px 10px;
}

.wcb-pos-bottom-left .wcb-btn-bar,
.wcb-pos-top-left    .wcb-btn-bar {
    justify-content: flex-start;
}

/* Button */
.wcb-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #fff !important;
    background: var(--wcb-color, #5c6ac4);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s, opacity 0.15s;
    text-decoration: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
}

.wcb-btn:hover {
    opacity: 0.88;
    transform: scale(1.03);
}

.wcb-btn:active {
    transform: scale(0.97);
}

/* Copied state */
.wcb-btn.wcb-copied {
    background: #2e7d32 !important;
}


/* Mobile adjustments */
@media (max-width: 600px) {
    .wcb-wish {
        padding: 12px 14px 8px 14px;
        font-size: 15px;
    }
    .wcb-btn {
        font-size: 10px;
        padding: 5px 8px;
    }
    .wcb-btn-bar {
        padding: 0 8px 8px 8px;
    }
}
