main.matches article .header > span {
    color: var(--c-haze-blue);
}

main.matches .stream-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, 50%);
    height: 360px;
    /* background-color: var(--bg-primary-darkest); */
}

main.matches .stream-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color-scheme: dark;
}

/* Custom Scrollbar using CSS */
main.matches .stream-list {
    overflow-y: scroll;
}

main.matches .stream-controls .stream-details {
    background-color: #1F1F2C; /* New color? */
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
    justify-content: space-between;
}

main.matches .stream-controls .stream-details:not(.active) {
    cursor: pointer;
}


main.matches .stream-controls .stream-details img {
    min-width: 20px;
}


main.matches .stream-controls .stream-details:not(.active) span {
    color: var(--primary-pale)
}

main.matches .stream-controls .stream-details.active {
    background-color: #24489F;
}

main.matches .stream-controls .stream-details [class^="bi-eye"],
main.matches .stream-controls .stream-details [class*=" bi-eye"] {
    font-size: 18px;
}

main.matches .stream-controls .stream-details [class^="bi-bar"],
main.matches .stream-controls .stream-details [class*=" bi-bar"] {
    font-size: 20px;
}

main.matches .stream-controls .stream-details.active [class^="bi-"],
main.matches .stream-controls .stream-details.active [class*=" bi-"] {
    color: white;   
}

main.matches .stream-controls .stream-details:not(.active) [class^="bi-"],
main.matches .stream-controls .stream-details:not(.active) [class*=" bi-"] {
    color: var(--primary-pale);
}

main.matches .stream-controls .stream-details:not(.active) [class^="bi-bar"],
main.matches .stream-controls .stream-details:not(.active) [class*=" bi-bar"] {
    color: var(--bg-dark-purple);
}

main.matches .stream-controls .stream-details>*:first-child {
    margin-left: 5px;
}
main.matches .stream-controls .stream-details>*:nth-child(2) {
    width: 100%
}

main.matches .stream-controls .stream-details.active>*:last-child {
    background-color: var(--active-blue);
}

main.matches .stream-controls .stream-details a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 55px;
    min-height: 55px;

}

main.matches .no-stream {
    height: 360px;
    background-image: url(/images/backgrounds/stream_bg.svg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 5px;
}



main.matches .no-stream-header {
    display: flex;
    gap: 15px;
}

main.matches .no-stream-header span {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: bold;
    color: #ADAEB3;
}

main.matches .no-stream-header img {
    width: 24px;;
}

main.matches .no-stream-description {
    color: #585b72;
    font-weight: bold;
    font-size: 16px;
}

main.matches #multi-date-picker input {
    min-width: 100px;
    min-height: 25px;
}