
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, #c9d6ff, #e2e2e2);
    color: #333;
}

header {
    background: #4caf50;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

#dashboard {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

#game-area {
    margin-top: 20px;
}

#decisions button {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 10px;
    background: #2196f3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#decisions button:hover {
    background: #1976d2;
}

#event-section {
    margin-top: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#event-log {
    font-size: 1rem;
    color: #444;
}

footer {
    margin-top: 20px;
}

#end-game-button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#end-game-button:hover {
    background: #d32f2f;
}
