.lob-accordion-wrap {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 18px;
    background: #ffffff;
}

/* Header row */
.lob-accordion-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: #eef2ff;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    align-items: center;
    transition: background 0.18s ease;
}

.lob-accordion-header:hover {
    background: #e0e7ff;
}

.lob-accordion-title {
    font-size: 15px;
    font-weight: 700;
    color: #1d3b7a;
    flex-grow: 1;
}

.lob-accordion-range {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    white-space: nowrap;
}

.lob-accordion-totals {
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.lob-accordion-totals span {
    display: block;
}

/* Expanded panel */
.lob-accordion-panel {
    display: none;
    padding: 14px;
}

.lob-accordion-panel.open {
    display: block;
}

/* Open indicator */
.lob-accordion-header::after {
    content:"▸";
    font-size: 13px;
    color:#1d3b7a;
    margin-left:6px;
}

.lob-accordion-header.open::after {
    content:"▾";
}
