/* ===============================
   Top Bar Genel
   =============================== */
.top-bar {
    background-color: #212529; /* bg-dark */
    color: #fff;               /* text-light */
    padding: 0.25rem 0;        /* py-1 */
    font-size: 0.875rem;
}

/* Sol linkler */
.topbar-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topbar-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.topbar-link:hover {
    color: #0d6efd; /* Tema rengi hover */
}

/* Sağ sosyal ikonlar */
.topbar-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.topbar-icon i {
    display: inline-block;
    width: 20px;      /* tüm ikonlar aynı yatay alanı kaplasın */
    height: 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.topbar-icon:hover i {
    color: #0d6efd; /* hover rengi */
}

/* Responsive küçük ekranlar */
@media (max-width: 576px) {
    .topbar-left {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .topbar-right {
        gap: 0.5rem;
    }
    .topbar-icon i {
        font-size: 14px;
        width: 16px; /* responsive için genişliği biraz küçülttük */
        height: 16px;
    }
}
