body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #b2b2b2;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: lightgrey;
    color: blue;
    padding: 6px;
    border-radius: 6px;
    border: 3px solid black;
    font-family: 'Arial';
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    min-width: 400px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

h2,
h3 {
    margin-top: 0;
    text-align: center;
    color: blue;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    margin-bottom: 0;
}

.column-header {
    display: flex;
    font-weight: bold;
    color: blue;
    font-size: 1.1em;
    justify-content: space-between;
    padding: 0 10px;
    top: 0;
}

.information {
    padding: 0 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: small;
    text-align: center;
}

.paytable {
    flex: 1 1 auto;
    /* allow grow + shrink */
    overflow-y: auto;
    /* scrollable list */
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* background: #111; */
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.paytable-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4c4c4c;
    padding: 6px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

.symbols {
    display: flex;
    gap: 6px;
    /* min-width: 260px; */
}

.payout {
    margin-left: auto;
    font-weight: bold;
    color: yellow;
    font-size: 1.1em;
}

.sprite {
    background-image: url("images/fruits.png");
    background-repeat: no-repeat;
    display: inline-block;
    image-rendering: pixelated;
    transform: scale(1);
    transform-origin: top left;
}

/* sprite definitions */
.sprite.orange {
    width: 52px;
    height: 33px;
    background-position: -6px -6px;
}

.sprite.pear {
    width: 52px;
    height: 33px;
    background-position: -61px -5px;
}

.sprite.watermelon {
    width: 52px;
    height: 33px;
    background-position: -5px -44px;
}

.sprite.bar {
    width: 52px;
    height: 33px;
    background-position: -62px -43px;
}

.sprite.coconut {
    width: 52px;
    height: 33px;
    background-position: -5px -81px;
}

.sprite.seven {
    width: 52px;
    height: 33px;
    background-position: -62px -82px;
}

.sprite.bell {
    width: 52px;
    height: 33px;
    background-position: -6px -119px;
}

.sprite.cherries {
    width: 52px;
    height: 33px;
    background-position: -62px -119px;
}

.sprite.clover {
    width: 52px;
    height: 33px;
    background-position: -5px -155px;
}

.any {
    width: 52px;
    height: 33px;
    border: 2px dashed #666;
    /* display: inline-block; */
    display: none;
    box-sizing: border-box;
    transform: scale(2);
    transform-origin: top left;
}

.about-container {
    flex: 1 1 auto;
    /* allow grow + shrink */
    overflow-y: auto;
    /* scrollable list */
    display: flex;
    flex-direction: column;
}

.section {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

.disclaimer-container {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: lightgrey;
    padding: 8px;
    border-radius: 8px;
    position: sticky;
    bottom: 0;
}

.modal button {
    flex: 1;
    background: #cc0066;
    color: white;
    border: none;
    border-radius: 6px;
    height: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.modal button:hover {
    background: #ee0077;
}

.spacer {
    padding: 10px 0px;
}