﻿<style >
/* Genel topbar stili */
.topbar {
    background-color: #f8f9fa; /* açık gri */
    border-bottom: 1px solid #dee2e6;
    font-size: 14px;
    padding: 6px 0;
}

/* İçerik düzeni */
.topbar .topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Her bir iletişim öğesi */
.topbar .contact-item {
    display: flex;
    align-items: center;
    color: #333;
}

    /* İkon stili */
    .topbar .contact-item i {
        font-size: 16px;
        margin-right: 6px;
        color: #007bff; /* mavi */
    }

    /* Link stili */
    .topbar .contact-item a {
        color: #333;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .topbar .contact-item a:hover {
            color: #007bff;
        }

/* Mobil optimizasyon */
@media (max-width: 576px) {
    .topbar {
        font-size: 12px;
        padding: 4px 0;
    }

        .topbar .topbar-content {
            gap: 1rem;
        }

        .topbar .contact-item i {
            font-size: 14px;
        }
}

</style >
