@charset "utf-8";
/* CSS Document */

/* buttons.css */

/* Tüm cihazlarda butonları gizle */
.footer-buttons {
    display: none;
}

/* Sadece mobil cihazlarda butonları göster */
@media (max-width: 1024px) {
    .footer-buttons {
        display: flex;
        justify-content: center;
        background-color: none;
        padding: 20px 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1000; /* Butonları diğer elemanların üstünde göstermek için */
    }

    .footer-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 25px;
        margin: 0 10px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold; /* Yazı kalın */
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .footer-buttons .call-taxi {
        background-color: #FFA500; /* Turuncu renk */
    }

    .footer-buttons .call-taxi:hover {
        background-color: #1E3A8A; /* Mavi arka plan */
    }

    .footer-buttons .send-location {
        background-color: #25D366; /* WhatsApp yeşili */
    }

    .footer-buttons .send-location:hover {
        background-color: #FF0000; /* Kırmızı arka plan */
    }

    .footer-buttons i {
        margin-right: 10px;
    }
}


