/* Word Display */
.word-display {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

/* Typed Text Display */
.typed-text-display {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

/* Keyboard Container - Positions at the bottom */
.keyboard-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    text-align: center;
}

/* Virtual Keyboard */
.keyboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.key {
    font-size: 18px;
    padding: 8px;
    background: #00ffcc;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    width: 7%;
    min-width: 35px;
    transition: background 0.2s ease;
}

.key:active, .key-pressed {
    background: #008866 !important;
    transform: scale(0.95);
}

.backspace {
    width: 10%;
    min-width: 50px;
}
