
#i2soft-keyboard {
    width: 630px;
    line-height: 20px;
    font-size: 1em;
    font-family: 'Jameel Noori Nastaleeq';
    /* Additional styles to make it float */
    position: absolute;
    z-index: 1000; /* Adjust the z-index to make sure it's above other content */
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hide the keyboard */
}

/* Default styles for larger screens */
#i2soft-keyboard, .i2soft-key {
    width: 630px;
}

/* Adjust styles for screens up to 768px width */
@media (max-width: 768px) {
    #i2soft-keyboard, .i2soft-key {
        width: 80%;
    }
}

/* Adjust styles for screens up to 600px width */
@media (max-width: 600px) {
    #i2soft-keyboard, .i2soft-key {
        width: 90%;
    }
}
    #i2soft-keyboard button {
        /* Your custom styles here */
        background-color: white;
        color: forestgreen;
        display:block;
        /* Add more styles as needed */
    }

        #i2soft-keyboard button:focus,
        #i2soft-keyboard button:active {
            /* Your styles for focus and active states here */
            outline: none; /* Remove default focus outline */
            background-color: seagreen;
            color: #ffffff;
        }
.i2soft-key,
#i2soft-backspace,
#i2soft-tab,
#i2soft-k25,
#i2soft-caps-lock,
#i2soft-enter,
#i2soft-left-shift,
#i2soft-right-shift,
#i2soft-space,
#i2soft-left-ctrl,
#i2soft-right-ctrl,
#i2soft-left-alt,
#i2soft-right-alt,
#i2soft,
#i2soft-escape {
    float: left;
    display: block;
    margin: 1px;
    height: 3em;
    line-height: 2.75em;
    text-align: center;
    color: black;
}

.i2soft-key {
    width: 40px;
}

#i2soft-backspace {
    width: 78px;
}

#i2soft-tab {
    width: 62px;
}

#i2soft-k25 {
    width: 56px;
}

#i2soft-caps-lock {
    width: 76px;
}

#i2soft-enter {
    width: 84px;
}

#i2soft-left-shift {
    width: 46px;
}

#i2soft-right-shift {
    width: 114px;
}

#i2soft-space {
    width: 246px;
    text-align: center;
}

#i2soft-right-ctrl,
#i2soft-right-alt,
#i2soft-escape {
    width: 62px;
}

#i2soft-left-ctrl,
#i2soft-left-alt,
#i2soft {
    width: 60px;
}

.i2soft-label-reference {
    color: gray;
    font-size: 0.9em;
    line-height: 12px;
    text-align: left;
    cursor: default;
}

.i2soft-label-natural {
    margin-top: -5px;
    color: #e0115f;
    line-height: 20px;
    text-align: center;
    cursor: default;
}

.i2soft-label-shift {
    margin-top: -5px;
    color: #057cb5;
    line-height: 20px;
    text-align: center;
    cursor: default;
}

#i2soft-k29 .i2soft-label-reference,
#i2soft-k32 .i2soft-label-reference {
    color: #000;
}

.i2soft-recessed span {
    color: #3c0;
}

.i2soft-recessed-hover span {
    color: #ffd800;
}

.i2soft-clear {
    clear: both;
}