.dashboard-container > * {
    padding: 2.75rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: center;
}

.leaderboard {
    padding-bottom: 2.5rem;
}

.stats {transform: translateX(1.25%);}

.hr {
    width: 100%;
    flex-shrink: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, white 50%, transparent 95%);
}

.stats {
    justify-content: center;
}

.graph {
    height: 10.5rem;
    width: 100%;
    /* background: darkblue; */
}

.carousel {
    position: relative;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.25rem;
}

.carousel > span:not(.fullscreen-button) {
    height: fit-content;
    padding: .5rem;
    font-size: 1.125rem;
    font-weight: 900;
    transform: scaleX(0.75);
    cursor: pointer;
}

.fullscreen-button {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.5rem;
    padding: .25rem;
    cursor: pointer;
    content: 'fullscreen';
    font-family: "Material Icons";
}

article {
    display: flex;
    flex-direction: column;
}

article > *:not(.date) {margin-block: 0.75rem;}

.date {
    opacity: 0.8;
    font-size: .95rem;
}

.news h4 {margin-block: 0.25rem}

.graph-desc {
    display: grid;
    column-gap: .5rem;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.graph-desc > h3 {
    font-size: 1.3rem;
    width: max-content;
}

.graph-desc > button {
    display: flex;

    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: .75rem;
    width: .75rem;
    padding: .5rem;
    font-size: .75rem;
}

.graph-desc > span {
    grid-column: span 3;
}

label {
    font-size: 1.25rem;
}

select {
    position: relative;
    display: inline-block;
    font-family: inherit;
    font-size: 1.25rem;
    background: transparent;
    color: white;
    outline: none;
    border: none;
    padding: 0.5em;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
}

option {
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
}

@supports (-moz-appearance: none) {
    select:hover,
    select:focus {
        background-color: rgba(255, 255, 255, 0.3);
    }
}

.selection-menu {
    display: flex;
    margin-block: -0.75rem;
    align-items: center;
}

.player-main-container {
    width: 100%;
    padding-inline: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    gap: .75rem;
}

.player-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
}

.player-container > h4, .player-container > span {
    max-height: fit-content;
}

.avatar {
    height: 100%;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    grid-row: span 2;
}

.graph {
    display: grid;
}

.graph > svg {
    transition: opacity 1s ease;
}

.graph > * {grid-area: 1/1}

.coming-soon {
    color: rgba(0, 0, 0, 0.541);
}

.pseudo-container > .menu-btn {
    position: absolute;
    font-size: 1.5rem;
    padding: .5rem 1rem;
    display: flex;
    top: 92%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: fit-content;
    font-family: inherit;
    color: black;
    border-style: groove;
    border-width: 3px;
}

.menu-btn::after {
    position: absolute;
    content: "";
    left: 0;
    top: calc(100% + 1rem);
    width: 100%;
    height: .125rem;
    background: black;
    filter: blur(.5rem);
}
