/* =============================================================================
   GP Pricing Table (Fee List)
   ============================================================================= */

.gp-fl {
    display: flex;
    flex-direction: column;
}

/* Header */
.gp-fl__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    font-weight: 700;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #E0E0E0;
}

.gp-fl__header-fees {
    text-align: right;
}

/* Fee rows */
.gp-fl__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    gap: 12px;
}

.gp-fl__price {
    text-align: right;
    flex-shrink: 0;
}

/* Footer note */
.gp-fl__note {
    margin: 16px 0 0;
    font-size: 13px;
    opacity: 0.7;
}
