/* ==========================================================================
   WC Payment Tracker – My Account
   Defers entirely to the active WooCommerce theme for fonts, colours,
   table borders, button styles, and status badges.
   Only adds the progress bar and minor spacing between product sections.
   ========================================================================== */

/* ── Section heading ── */
.wcpt-product-heading {
    margin: 2em 0 0.75em;
    font-size: 1.2em;
}
.wcpt-product-heading a {
    text-decoration: none;
    color: inherit;
}
.wcpt-product-heading a:hover {
    text-decoration: underline;
}

/* ── Summary table sits above the detail table ── */
.wcpt-summary-table {
    margin-bottom: 0.5em;
}

/* ── Progress bar ── */
.wcpt-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0.5em 0 1.25em;
}
.wcpt-progress-bar {
    flex: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 999px;
    overflow: hidden;
}
.wcpt-progress-fill {
    height: 100%;
    background: currentColor; /* inherits the theme's link / primary colour */
    border-radius: 999px;
    transition: width 0.6s ease;
    /* Fallback colour if currentColor resolves to something invisible */
    background-color: #2ea2cc;
}
.wcpt-progress-label {
    white-space: nowrap;
    font-size: 0.8em;
    color: #767676;
}

/* ── Tfoot summary rows ── */
.wcpt-foot-row td {
    border-top: 1px solid #e0e0e0;
}
.wcpt-foot-row td:empty {
    border-top: none;
}

/* ── Divider between products ── */
.wcpt-divider {
    margin: 2.5em 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

/* ── "Make next payment" link ── */
.wcpt-next-payment {
    margin: 1em 0 0;
    text-align: right;
}

/* ── Responsive: hide running total column on small screens ── */
@media ( max-width: 600px ) {
    .wcpt-progress-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .wcpt-progress-bar { width: 100%; }
}
