@charset "utf-8";
/* CSS Document */
/* desktop-buttons.css */

/* Sadece desktopta görünecek butonlar */
@media (min-width: 1025px) {
    .desktop-footer-buttons {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: none;
        z-index: 1000; /* Butonları diğer elemanların üstünde göstermek için */
    }

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

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

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

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

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

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

