.player-button {
    width: 6rem;
}

.player-button:not(:first-child) {
    margin-left: 0.5rem;
}

.list-container {
    /* height: 310px; */
    min-height: calc(20 * var(--font-size));
    /* Assuming each list item has a height of 20px */
    /* max-height: 200px; */
    overflow-y: auto; /* Enable vertical scrolling */
    border: 1px solid #ccc; /* Optional, to visually see the scrollable area */
    width: 100%; /* Optional width */
    /* height: calc(9 * 1.5 * var(--font-size)); */
}

.selection-list {
    padding: 0;
    height: calc(9 * 1.5 * var(--font-size));
}

.selection-list li {
    margin: 0;
    list-style-type: none;
    padding: calc(var(--form-element-spacing-vertical) * 0.5) var(--spacing);
    /* border-top: var(--border-width) solid var(--card-border-color); */
    /* text-transform: capitalize; */
}

/* .selection-list li:last-child {
    border-bottom: var(--border-width) solid var(--card-border-color);
} */

/* Style for the selected language */
.selection-list li.selected {
    background-color: var(--primary-focus);
}

.selection-list li {
    line-height: 1.5;
}

.center-text {
    text-align: center;
}

#provider-card footer {
    white-space: nowrap;
}
