/* Container */
.invite-payment-ladder {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    display: none; /* Hidden until JS populates data */
}

/* Step Layout */
.ipl-step {
    display: flex;
    align-items: flex-start;
    position: relative;
}

/* Markers */
.ipl-marker {
    width: 24px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    margin-top: 3px;
}

.ipl-dot {
    width: 14px;
    height: 14px;
    background-color: #27ae60; /* Success Green */
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.ipl-dot-hollow {
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 50%;
}

/* Vertical Line */
.ipl-connector {
    width: 2px;
    height: 22px;
    background-color: #eee;
    margin-left: 11px; /* Aligns with center of 24px marker */
    margin-top: -2px;
    margin-bottom: -2px;
}

/* Content Typography */
.ipl-content {
    flex: 1;
}

.ipl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.3;
}

.ipl-label {
    color: #333;
    font-weight: 500;
}

.ipl-amount {
    font-weight: 700;
    color: #111;
}

/* Highlight the booking amount */
.ipl-step.active .ipl-amount {
    color: #27ae60;
    font-size: 15px;
}

.ipl-sub {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    display: block;
}
