/* templates/blocks/separator/style.css */

.pf-separator {
    display: flex;
    justify-content: var(--pf-sep-align, center);
    margin-top: var(--pf-sep-mt, 20px);
    margin-bottom: var(--pf-sep-mb, 20px);
    width: 100%;
    box-sizing: border-box;
    /* Reset padding to prevent unexpected layout issues */
    padding: 0;
}

.pf-separator-inner {
    width: var(--pf-sep-width, 100%);
    /* Use border-top as the actual line */
    border-top-width: var(--pf-sep-thick, 1px);
    border-top-style: var(--pf-sep-style, solid);
    border-top-color: var(--pf-sep-color, #e5e7eb);
    height: 0;
    box-sizing: border-box;
}