.site-topbar {
    background-color: #0b2f66;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

/* ซ้าย */
.site-topbar-left {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap; 
}

/* ขวา */
.site-topbar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-topbar i {
    color: #ffffff;
    font-size: 14px;
}

.site-topbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.site-topbar a:hover {
    text-decoration: underline;
}

/* =========================
   Responsive (มือถือ)
========================= */
@media (max-width: 768px) {
    .site-topbar {
        flex-direction: column;
        text-align: center;
        font-size: 13px;
    }

    .site-topbar-left,
    .site-topbar-right {
        justify-content: center;
    }
}
