body {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    color: #fff;
}

#narration-container {
    margin-bottom: 20px;
    height: 1.5em; /* Fixed height to prevent resizing */
    text-align: center;
}

#narration {
    font-size: 1.2em;
    margin: 0;
}

.container {
    text-align: center;
    background: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.time-status {
    margin-bottom: 20px;
}

.health-bar {
    width: 100%;
    background-color: #555;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate that the progress bar is clickable */
}

#health-progress {
    width: 0;
    height: 20px;
    background-color: #d3d3d3; /* Light grey */
}

.tamagotchi {
    margin-top: 20px;
}

.tamagotchi pre {
    font-size: 2em;
    margin: 0;
}

.status p {
    font-size: 1.2em;
}

.actions button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
}

.actions button:hover {
    background-color: #0056b3;
}