html, body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#greyhoundracinggame {
    background: #000;
    width: 100%;
    height: 100%;
    position: relative;
}

canvas {
    display: block;
}

/* DOM input overlays (chip/stake amount) - see src/greyhound-view/dom-input.js */
.greyhound-racing-dom-input {
    position: absolute;
    box-sizing: border-box;
    background: rgba(10, 14, 26, 0.85);
    border: 2px solid #3a4360;
    border-radius: 10px;
    color: #ffe27a;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
    pointer-events: auto;
    z-index: 5;
}

.greyhound-racing-dom-input:focus {
    border-color: #ffc93c;
}

.greyhound-racing-dom-input::-webkit-outer-spin-button,
.greyhound-racing-dom-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
