:root {
    --text: #eaeef7;
    --background: #04060b;
    --primary: #719bfe;
    --secondary: #244389;
    --accent: #4d79e0;

    --text-50: #edf0f8;
    --text-100: #dae1f1;
    --text-200: #b5c3e3;
    --text-300: #90a5d5;
    --text-400: #6b87c7;
    --text-500: #4669b9;
    --text-600: #385494;
    --text-700: #2a3f6f;
    --text-800: #1c2a4a;
    --text-900: #0e1525;
    --text-950: #070a12;

    --background-50: #ecf0f8;
    --background-100: #dae0f1;
    --background-200: #b4c2e4;
    --background-300: #8fa3d6;
    --background-400: #6984c9;
    --background-500: #4466bb;
    --background-600: #365196;
    --background-700: #293d70;
    --background-800: #1b294b;
    --background-900: #0e1425;
    --background-950: #070a13;

    --primary-50: #e6edff;
    --primary-100: #ccdbff;
    --primary-200: #9ab8fe;
    --primary-300: #6794fe;
    --primary-400: #3471fe;
    --primary-500: #014dfe;
    --primary-600: #013ecb;
    --primary-700: #012e98;
    --primary-800: #011f65;
    --primary-900: #000f33;
    --primary-950: #000819;

    --secondary-50: #ebeffa;
    --secondary-100: #d7e0f4;
    --secondary-200: #aec0ea;
    --secondary-300: #86a1df;
    --secondary-400: #5e81d4;
    --secondary-500: #3662c9;
    --secondary-600: #2b4ea1;
    --secondary-700: #203b79;
    --secondary-800: #152751;
    --secondary-900: #0b1428;
    --secondary-950: #050a14;

    --accent-50: #e9effb;
    --accent-100: #d4def7;
    --accent-200: #a8bef0;
    --accent-300: #7d9de8;
    --accent-400: #527ce0;
    --accent-500: #265cd9;
    --accent-600: #1f49ad;
    --accent-700: #173782;
    --accent-800: #0f2557;
    --accent-900: #08122b;
    --accent-950: #040916;

    --header-height: 4rem;
    --player-height: 4rem;

    --small-border-radius: 6px;
}

/* General Styles */
body {
    margin: 0em;
    font-family: "Open Sans";
    color: var(--text);
    background-color: var(--background-900);

    display: grid;
    grid-template-columns: minmax(200px, 250px) 6fr;
    grid-template-rows: var(--header-height) auto auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0em;
}

p {
    margin: 0em;
    font-size: 16px;
}

p.subtext {
    font-size: 0.8rem;
}

.large-icon {
    font-size: 2rem;
}

.button {
    margin: 0em;
    padding: 0em;
    border: 0em;
    cursor: pointer;
    transition: all 0.2s linear;
}

.button--transparent {
    background-color: rgba(0, 0, 0, 0);
    color: var(--text);
}

.button--left-align {
    text-align: left;
}

.button--nav {
    padding: 0rem 1.5rem;
    height: 50px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.button--underline:hover {
    text-decoration: underline;
}

.button--respond-grow:hover {
    transform: scale(1.1);
}

.button--respond-slide:hover {
    transform: translateX(8px);
    background-color: var(--accent-900);
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    visibility: hidden;
}

/* Page Styles */
.header {
    padding: 0rem 2rem;

    position: sticky;
    top: 0em;
    height: 4em;

    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 2rem;
    align-items: center;

    background-color: var(--background);
    z-index: 1000;
}

.header__profile {
    text-align: right;
}

.header__search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__search {
    box-sizing: border-box;
    border: 0em;
    padding: 1rem;
    height: 1.75rem;
    flex-grow: 1;

    border-radius: 15px;
}

.sidebar {
    grid-row: 1 / span 2;
    position: sticky;
    top: 0em;
    left: 0em;

    display: flex;
    flex-direction: column;
    overflow: hidden;

    height: calc(100dvh - var(--player-height));

    background-color: var(--background-950);
}

.sidebar__title {
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar__playlist-cover {
    width: 40px;
    height: 40px;
    border-radius: var(--small-border-radius);
}

/* Player Styles */
.player {
    grid-column: 1 / span 2;
    position: sticky;
    bottom: 0em;

    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-content: center;

    height: var(--player-height);

    background-color: var(--background);
    z-index: 1000;
}

.player>div {
    margin: 0rem 1rem;

    display: flex;
    align-items: center;
}

.player__controls {
    justify-content: right;
    gap: 0.35em;
}

.player__progress {
    gap: 0.35rem;
}

.player__progress-bar {
    flex-grow: 1;
}

.player__info {
    justify-content: left;
    gap: 0.35rem;
}

.player__album-cover {
    margin-left: 1.65rem;
    width: 3rem;
    height: 3rem;
    border-radius: var(--small-border-radius);
}

.player__album-info {
    margin-right: 1.65rem;
    width: 8rem;

    display: flex;
    gap: 0.3rem;
    flex-direction: column;
}

.player__album-info>p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* gorilla. */
.gorilla {
    position: absolute;
    z-index: 9999;
}

.gorilla>img {
    width: 200px;
}

html.banana * {
    cursor: url("/assets/banana.png"), auto !important;
}