.zf-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zf-details-list__item {
    border-bottom: 1px solid #EEE;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.zf-details-list__item:last-child {
    border-bottom: 0;
}

.zf-details-list__label {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #1E1E1E;
    flex-shrink: 0;
}

.zf-details-list__value {
    font-size: 14px;
    color: #555;
    text-align: right;
}

/* Dark mode */
html[data-theme="dark"] .zf-details-list__item {
    border-bottom-color: #21262D;
}

html[data-theme="dark"] .zf-details-list__label {
    color: #E6EDF3;
}

html[data-theme="dark"] .zf-details-list__value {
    color: #8B949E;
}
