#arama-dugmeleri {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px;
    z-index: 1000;
}

#mavi-buton, #yesil-buton {
    flex: 1;
    text-align: center;
    padding: 9px;
    cursor: pointer;
}

#mavi-buton {
    background-color: black;
    color: #fff;
    font-size: 25px;
}

#yesil-buton {
    background-color: green;
    color: #fff;
    
}

@media (min-width: 768px) {
    #arama-dugmeleri {
        display: none;
    }
}