body {
    overflow: hidden;
    background-color: white;
    min-height: 100vh;
}

.center-container {
    display: grid;
    place-items: center;
    height: auto;
    text-align: center;
}

#score {
    margin-top: 100px;
    transform-origin: center center center center;
}

#controls {
    display: flex;
    flex-wrap: nowrap; /* Prevents the buttons from wrapping */
    justify-content: center; /* Keeps buttons centered in the container */
    white-space: nowrap; /* Prevents wrapping at individual button labels */
    min-width: 0; /* Allows the div to shrink, but you might set a specific min-width to prevent too much shrinking */
    overflow-x: auto; /* Adds horizontal scrolling if the buttons would overflow */
}

#play {
    background-color: #ffffff;
    border: 3px solid #000000;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    margin: 8px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    box-sizing: border-box;
    box-shadow: 0 3px #999;
    transition: background-color 0.5s ease;
}

#play:disabled {
    background-color: #bbbbbb;
    color: rgb(0, 0, 0);
    transition: background-color 0.5s ease;
}

#play:hover {
    background-color: #bbbbbb;
    color: rgb(255, 255, 255);
    transition: background-color 0.5s ease;
}

#play:active {
    box-shadow: 0 5px #666;
    transform: translateY(1px);
}

#stop {
    background-color: #ffffff;
    border: 3px solid #000000;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    margin: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    box-sizing: border-box;
    box-shadow: 0 3px #999;
    transition: background-color 0.5s ease;
}

#stop:disabled {
    background-color: #bbbbbb;
    color: rgb(0, 0, 0);
    transition: background-color 0.5s ease;
}

#stop:hover {
    background-color: #bbbbbb;
    color: rgb(255, 255, 255);
    transition: background-color 0.5s ease;
}

#stop:active {
    box-shadow: 0 5px #666;
    transform: translateY(1px);
}

#download {
    background-color: #ffffff;
    border: 3px solid #000000;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    margin: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    box-sizing: border-box;
    box-shadow: 0 3px #999;
    transition: background-color 0.5s ease;
}

#download:disabled {
    background-color: #bbbbbb;
    color: rgb(0, 0, 0);
    transition: background-color 0.5s ease;
}

#download:hover {
    background-color: #bbbbbb;
    color: rgb(255, 255, 255);
    transition: background-color 0.5s ease;
}

#download:active {
    box-shadow: 0 5px #666;
    transform: translateY(1px);
}