body {
    background-color: #f0f0f0; /* Light grey background, change as needed */
    font-family: 'Courier New', Courier, monospace; /* Retro feel */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sprite-container {
    margin-bottom: 20px;
}

#eden-sprite {
    height: 60vh;
    width: auto;
    image-rendering: pixelated; /* Keeps pixel art crisp */
}

.dialogue-box {
    position: absolute;
    bottom: 40px; /* Moved up by 20px */
    width: 600px;
    max-width: 90%;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    border: 4px solid #fff; /* Thicker white border */
    outline: 2px solid #000; /* Double border effect */
    padding: 15px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 150px; 
    font-family: 'MS PGothic', 'Courier New', monospace; /* MS PGothic with fallback */
    font-size: 1.1rem;
    image-rendering: pixelated; /* Helps font rendering on some screens */
}

.info-box {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 300px;
    background-color: #fff;
    border: 2px solid #000;
    padding: 10px;
    font-size: 0.8rem;
    line-height: 1.3;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    z-index: 10;
	font-family: ms pgothic;
}

#chat-history {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    gap: 5px;
    scrollbar-width: thin;
    scrollbar-color: #fff #000;
}

/* Custom scrollbar for Webkit browsers */
#chat-history::-webkit-scrollbar {
    width: 8px;
}
#chat-history::-webkit-scrollbar-track {
    background: #000; 
}
#chat-history::-webkit-scrollbar-thumb {
    background: #fff; 
    border: 1px solid #000;
}

.message {
    line-height: 1.4;
}

.input-area {
    display: flex;
    align-items: center;
    border-top: 1px dashed #fff; /* White dashed line */
    padding-top: 5px;
}

.prompt {
    margin-right: 5px;
    font-weight: bold;
    color: #fff;
}

#user-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    color: #fff; /* White input text */
    caret-color: #fff; /* White cursor */
}
