/* styles.css */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #e8f5e9;
    margin: 0;
    height: 100vh;
    justify-content: center;
}

h1 {
    font-family: 'Salsa', cursive;
    font-size: 48px;
    color: #388e3c;
    margin-bottom: 20px;
}

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

#gameArea {
    width: 60%;
    max-width: 600px;
    min-width: 300px;
    background: #a5d6a7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

#output {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #388e3c;
    padding: 10px;
    margin-bottom: 10px;
    background: #c8e6c9;
    white-space: pre-wrap;
    color: #2e7d32;
    font-family: 'Courier New', Courier, monospace;
}

#input {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #388e3c;
    font-size: 16px;
    background: #e8f5e9;
    color: #2e7d32;
}

#instructions {
    width: 40%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#instructions h2 {
    color: #388e3c;
    font-size: 24px;
    margin-top: 0;
}

#instructions p {
    font-size: 16px;
    line-height: 1.5;
}

#instructions ul {
    margin-top: 10px;
}

#instructions li {
    font-size: 16px;
    line-height: 1.5;
}
