.middle-column > .funds-container {
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.middle-column > .funds-container > .funds-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 8px 8px 0 0;
}

.middle-column > .funds-container > .funds-header > h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: rgb(33, 37, 41);
    margin: 0 0 0 .5rem;
    font-family: var(--font-heading);
}

.middle-column > .funds-container > .funds-header > .funds-selection {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.middle-column > .funds-container > .funds-header > .funds-selection > span {
    font-size: 0.9rem;
    color: rgb(108, 117, 125);
    font-weight: 500;
}

.middle-column > .funds-container > .funds-header > .funds-selection > select {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    margin-right: .5rem;
    border: 1px solid rgb(222, 226, 230);
    border-radius: 6px;
    background-color: white;
    color: rgb(73, 80, 87);
    appearance: none;
    background-image: url("/ui/images/down.svg");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.middle-column > .funds-container > .funds-header > .funds-selection > select:hover {
    border-color: rgb(173, 181, 189);
}

.middle-column > .funds-container > .funds-header > .funds-selection > select:focus {
    outline: none;
    border-color: rgb(74, 144, 226);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.25);
}

.middle-column > .funds-container > .funds-list-container {
    overflow-x: auto;
}

.middle-column > .funds-container > .funds-list-container > .funds-list-header {
    display: grid;
    grid-template-columns: 50px 70px 85px 1fr 140px;
    gap: 1.5rem;
    padding: 0 1rem 0.75rem 1rem;
    border-bottom: 2px solid rgb(233, 236, 239);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgb(108, 117, 125);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item {
    border-bottom: 1px solid rgb(241, 243, 245);
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item:last-child {
    border-bottom: none;
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item > .funds-link {
    display: grid;
    grid-template-columns: 50px 70px 85px 1fr 140px;
    gap: 1.5rem;
    padding: 1.25rem 1rem;
    align-items: center;
    text-decoration: none;
    color: rgb(73, 80, 87);
    transition: background-color 0.2s ease;
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item > .funds-link:hover {
    background-color: rgb(248, 249, 250);
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item > .funds-link > .item-rank {
    font-weight: 500;
    color: rgb(108, 117, 125);
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item > .funds-link > .item-weight {
    font-weight: 500;
    color: rgb(33, 37, 41);
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item > .funds-link > .item-symbol {
    font-weight: 600;
    color: rgb(33, 37, 41);
}

.middle-column > .funds-container > .funds-list-container > .funds-list > .funds-item > .funds-link > .item-name {
    color: rgb(73, 80, 87);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
