body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.logo-space {
    width: 240px;
    max-width: 240px;
    margin-bottom: 20px;
}

.robot-picker {
    font-size: 18px;
    padding: 8px;
    margin-bottom: 10px;
}

.status {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 360px;
    justify-items: center;
}

button {
    width: 120px;
    height: 120px;
    font-size: 24px;
    font-weight: bold;
    background-color: red;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button:active {
    background-color: gray;
}

.center {
    grid-column: 2;
}
