﻿
        /* Genel stiller */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
	 
	     .footer {
            background-color: #333;
            color: white;
            text-align: center;
            margin-top: auto;
            font-size: 14px;
            margin-bottom: 35px;
			padding: 3px;
        }
        .footer a {
            color: #ffffff;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }

        /* Sabit menü */
        .fixed-menu {
            position: fixed;
            bottom: 5px;
            left: -10px;
            background-color: rgba(0, 0, 0, 0.7); /* Siyah şeffaf arka plan */
            display: flex;
            justify-content: center; /* Butonları ortala */
            align-items: center;
            padding: 10px;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            width: 100%; /* Menü genişliğini %100 yap */
        }

        .menu-item {
            text-align: center;
        }

        /* Butonlar için ortak stiller */
        .menu-btn {
            display: flex; /* Flex kullanarak içerikleri yan yana diz */
            align-items: center;
            justify-content: center;
            background-color: white;
            border: none;
            border-radius: 25px; /* Daha yuvarlak kenarlar */
            padding: 10px 22px; /* Daha küçük buton padding */
            font-size: 11px; /* Buton yazı boyutu */
            color: #333;
            cursor: pointer;
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            min-width: 80px; /* Minimum buton genişliği */
            height: 30px; /* Buton yüksekliği */
            margin: 0 5px; /* Butonlar arasında boşluk */
        }

        .menu-btn:hover {
            background-color: #f0f0f0;
        }

        .menu-btn img {
            width: 16px; /* İkon boyutunu küçültüldü */
            height: 16px;
            margin-right: 4px; /* İkon ve metin arasındaki boşluk */
        }

        /* Renkli butonlar */
        .call-btn {
            color: #3337e9; /* Canlı mavi */
        }

        .whatsapp-btn {
            color: #25d366; /* WhatsApp yeşili */
        }

        .to-top-btn {
            color: #ff0000; /* Kırmızı */
        }

        /* İçerik alanı */
        .content {
            padding: 20px;
            min-height: 100vh;
            padding-bottom: 70px; /* Sabit menü kadar boşluk ekle */
        }

        /* Mobil uyum için iyileştirmeler */
        @media (max-width: 768px) {
            .fixed-menu {
                flex-direction: row; /* Butonlar yan yana */
            }

            /* İçerik alanı için mobil uyumlu padding */
            .content {
                padding-bottom: 100px; /* Mobilde menünün yüksekliğine göre ayarlandı */
            }

            .menu-btn {
                min-width: 70px; /* Mobilde minimum buton genişliği */
                height: 28px; /* Mobilde buton yüksekliği */
                font-size: 11px; /* Mobilde yazı boyutu */
            }
        }

