.keyboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#searchInput{
    width: calc( 100% - 100px );
    float: left;
    padding: 5pt;
    padding-right: 57px;
    font-size: 15pt;
    border: 2px solid #3b77ac;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.search-button {
    width: 100px;
    padding: 5pt;
    font-size: 15pt;
    border: 2px solid #3b77ac;
    background-color: #3b77ac;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
    outline: none;
}
.keyboard-key {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 5px;
    border: 1px solid #3b77ac;
}
.keyboard-row {
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    /* Küçük ekranlar için özel stil ayarları buraya eklenebilir */
    .keyboard-key {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
.input-group-clear {
    position: relative;
}
.input-group-clear input {
    padding-right: 30px; /* X simgesi için boşluk bırakın */
}
.input-group-clear .clear-input {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}