
#keyboard {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000 !important;
    height: 35vh;
}

.row {
    display: flex;
    justify-content: center;
    margin: 5px 0;
}

.key {
    width: 80px;
    height: 80px;
    margin: 3px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #EF4650;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 700;
    color: white
}

.key:active {
    background-color: #ddd;
}

.special {
 
}
.key.col2 {
    width: 166px !important;
}



.key.col3 {
    width: 252px !important;
}



#input-field {
    width: 80%;
    height: 100px;
    margin-top: 20px;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}