﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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 #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}




/* Alt sabit menü */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #c20000; /* 🔥 Tam GS kırmızısı */
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid #ffcc00; /* sarı ince çizgi */
    z-index: 9999;
}

    /* Menü itemları */
    .bottom-nav .nav-item {
        color: #ffcc00; /* sarı yazı */
        text-align: center;
        font-size: 12px;
        text-decoration: none;
        font-weight: 600;
    }

        /* İkonlar */
        .bottom-nav .nav-item i {
            font-size: 22px;
            display: block;
            margin-bottom: 3px;
            color: #ffcc00; /* ikonlar da sarı */
        }

        /* Seçili olan menü beyaz olabilir */
        .bottom-nav .nav-item.active {
            color: #ffffff;
        }

            .bottom-nav .nav-item.active i {
                color: #ffffff;
            }

    .bottom-nav .nav-item {
        color: yellow !important;
    }

        .bottom-nav .nav-item i {
            color: yellow !important;
        }

        .bottom-nav .nav-item span {
            color: yellow !important;
        }

    .bottom-nav .nav-item {
        color: yellow !important;
        text-shadow: 0 0 6px rgba(255, 255, 0, 0.6);
    }

/* Mobilde içerik menünün altında kalmasın */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}










