/* Main background color */
body {
    background-color: #F9DF6D;
    font-family: "SUSE", sans-serif;
}

/* Style for tile container */
.tile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.tile {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    position:relative;
}

label {
    float: left;
    padding: 5px 10px;
    background-color: #323232;
    color:#F9DF6D;
    border-radius: 7px;
    font-size: 15px;
    font-weight: bold;
}

.label {
    width: 30%;
    top: 5px;
    position: relative;
    padding: 5px 10px;
    background-color: #323232;
    color:#F9DF6D;
    border-radius: 7px;
    font-size: 15px;
    font-weight: bold;
}

.tile .bi-coin{
    border: none;
    position: absolute;
    top: -12px;
    right: 2px;
    background: none;
}

/* Hide other tiles initially */
.tile:not(:first-child) {
    display: none;
}

/* Virtual keyboard styling */
.virtual-keyboard {
    margin: 5px 0;
    width: 100%;
    height:0;
    overflow:hidden
}

.virtual-keyboard td {
    padding: 5px;
}

.key-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
