body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color: #f0f0f0;
}

h1 {
    margin-bottom: 20px;
}

#maze-container {
    position: relative;
    width: 600px;
    height: 600px;
    border: 3px solid #333;
    background-color: #ecf0f1;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#maze {
    width: 100%;
    height: 100%;
    display: grid;
}

.cell {
    width: 24px;
    height: 24px;
}

.wall {
    background-color: #2c3e50;
}

#player {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: transparent;
    transition: all 0.05s linear;
    z-index: 10;
    user-select: none;
}

#goal {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: transparent;
    z-index: 5;
    user-select: none;
}

#controls {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    margin: 5px;
}

button:hover {
    background-color: #2980b9;
}