h2 {
    font-family: sans-serif;
}

/* Reset default list styles */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Style for the frequency group's unordered list */
.frequency-group ul {
    margin: 0;
    padding: 0;
}

/* Each list item is a flex container to display two columns */
ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    font-family: sans-serif;
}

/* Alternate background colors for better readability */
ul li:nth-child(odd) {
    background-color: #ffffff; /* White for odd-numbered items */
}

ul li:nth-child(even) {
    background-color: #f5f5f5; /* Light gray for even-numbered items */
}

/* Style for the frequency name (left column) */
.freq-name {
    text-align: left;
    flex: 1;
}

/* Style for the frequency value (right column) */
.freq-value {
    text-align: right;
    min-width: 80px; /* A minimum width to ensure alignment */
}
