/*
 * LatePoint Block Clients — front-end CSS.
 *
 * The .lp-bc-close-btn inherits LP's own button classes at runtime via JS.
 * These rules are a fallback if LP's class names change, ensuring the button
 * always looks like a primary action.
 */

.lp-bc-close-btn {
    display: block !important;
    margin: 0 auto !important;
    min-width: 120px;
    cursor: pointer;
    /* Inherits colours / border-radius from LP's own button classes at runtime. */
    /* Fallback values below are only visible if LP's classes don't apply. */
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    background: #4a6cf7;
    color: #fff;
    transition: opacity .15s;
}

.lp-bc-close-btn:hover {
    opacity: .88;
}
