body {
    background: #2f5f9e;
    margin: 0;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Press Start 2P', monospace;

    image-rendering: pixelated;
    overflow: hidden;
}

/* MAIN WINDOW */

#game-window {
    width: 1000px;
    height: 650px;

    background: #d8f8d8;

    border: 6px solid #1a1a1a;

    box-shadow:
        inset -4px -4px #7fa67f,
        inset 4px 4px #ffffff;

    padding: 10px;
}

/* TOP BAR */

#top-bar {
    background: #ffcc33;

    border: 4px solid #000;

    padding: 12px;

    margin-bottom: 10px;

    font-size: 12px;
}

/* MAIN LAYOUT */

#ui-container {
    display: flex;
    gap: 10px;
    height: calc(100% - 60px);
}

/* LEFT SIDE */

#left-panel {
    width: 300px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* PANELS */

.panel {
    background: #f8f8f8;

    border: 4px solid #000;

    box-shadow:
        inset -4px -4px #999,
        inset 4px 4px #fff;

    padding: 10px;
}

/* PROFILE */

#profile-pic {
    width: 100%;
    image-rendering: pixelated;
}

#trainer-text {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.8;
}

/* SIDEBAR */

#sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    background: white;

    border: 3px solid #000;

    padding: 10px;

    cursor: pointer;

    font-size: 10px;
}

.menu-item:hover {
    background: #ffe680;
}

.menu-item.selected {
    background: #ffd84d;
}

/* MAIN CONTENT */

#main-panel {
    flex: 1;

    overflow-y: auto;

    font-size: 10px;

    line-height: 2;
}

/* SECTION TITLES */

.section-title {
    background: #ffcc33;

    border: 3px solid black;

    display: inline-block;

    padding: 8px;

    margin-bottom: 20px;

    font-size: 10px;
}

/* DETAILS */

details {
    margin-bottom: 20px;
}

summary {
    cursor: pointer;
    color: #204080;
}

/* CHAT */

#chattable {
    width: 100%;
    height: 450px;

    border: 3px solid black;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #d8d8d8;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border: 2px solid black;
}