body {
    background-color: #4381BF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

#gameCanvas {
    width: 80vw;
    height: 80vh;
    border: 1px solid #15416d;
}

.gamepad-selector-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center the container */
    margin-top: 20px;
    margin-bottom: 20px;
}

.gamepad-selector-container label {
    margin-right: 10px;
    color: white;
    font-size: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
}

#gamepadSelector {
    padding: 4px 8px; /* Adequate padding for better touch area */
    border: 2px solid #2966a3; /* Border color based on theme */
    background-color: white; /* Light background for contrast */
    color: #2966a3; /* Text color based on theme */
    font-size: 1em; /* Adjust the font size as needed */
    border-radius: 5px; /* Rounded corners */
    outline: none; /* Remove default focus outline */
    cursor: pointer; /* Pointer cursor on hover */
}

#gamepadSelector:hover {
    border-color: #245b92; /* Slightly darker border on hover */
}

#gamepadSelector:focus {
    border-color: #1e4d7b; /* Even darker border for focus */
}

/* Optional: Style for options (Uncomment if needed)
#gamepadSelector option {
    padding: 8px;
    background-color: white;
    color: #2966a3;
}
*/

.axis-selector-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center the container */
    margin-bottom: 20px;
}

.axis-selector-container label {
    margin-right: 10px;
    color: white;
    font-size: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
}

#axisSelector {
    padding: 4px 8px; /* Adequate padding for better touch area */
    border: 2px solid #2966a3; /* Border color based on theme */
    background-color: white; /* Light background for contrast */
    color: #2966a3; /* Text color based on theme */
    font-size: 1em; /* Adjust the font size as needed */
    border-radius: 5px; /* Rounded corners */
    outline: none; /* Remove default focus outline */
    cursor: pointer; /* Pointer cursor on hover */
}

#axisSelector:hover {
    border-color: #245b92; /* Slightly darker border on hover */
}

#axisSelector:focus {
    border-color: #1e4d7b; /* Even darker border for focus */
}

/* Optional: Style for options (Uncomment if needed)
#axisSelector option {
    padding: 8px;
    background-color: white;
    color: #2966a3;
}
*/

.full-width-banner {
    width: 100%;
    height: auto; /* This maintains the aspect ratio */
    }