﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* 🔥 FOCUS MAVİ → YEŞİL */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #00843D;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* =========================
   ALT MENÜ – BURSASPOR
   ========================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #00843D; /* 🔥 ana yeşil */
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid #ffffff; /* beyaz çizgi */
    z-index: 9999;
}

    /* Menü itemları */
    .bottom-nav .nav-item {
        color: #ffffff; /* yazı beyaz */
        text-align: center;
        font-size: 12px;
        text-decoration: none;
        font-weight: 600;
    }

        /* ikonlar */
        .bottom-nav .nav-item i {
            font-size: 22px;
            display: block;
            margin-bottom: 3px;
            color: #ffffff;
        }

        /* aktif item */
        .bottom-nav .nav-item.active {
            color: #E8F7EF; /* hafif açık yeşil */
        }

            .bottom-nav .nav-item.active i {
                color: #E8F7EF;
            }

    /* glow efekti yeşil */
    .bottom-nav .nav-item {
        color: #ffffff !important;
        text-shadow: 0 0 6px rgba(0, 132, 61, 0.6);
    }

        .bottom-nav .nav-item i {
            color: #ffffff !important;
        }

        .bottom-nav .nav-item span {
            color: #ffffff !important;
        }

/* Mobil padding */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}
