﻿/* ============================================================
   Public WebUI - Ust Bant Modulu
   ============================================================
   Ust bant, sayfa verisinden bagimsiz yeniden kullanilan bir WebPageModule'dur.
   "space-between" secenegi ilk kalemi solda, kalanlari sagdaki tek grupta
   tutar; boylece calisma saati ile iletisim bilgileri birbirinden ayrilir.
   ============================================================ */

.topbar-module {
    font-size: .8125rem;
    line-height: 1.4;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.topbar-module__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-module--left .topbar-module__list { justify-content: flex-start; }
.topbar-module--center .topbar-module__list { justify-content: center; }
.topbar-module--right .topbar-module__list { justify-content: flex-end; }

.topbar-module__split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .35rem 1.5rem;
}

.topbar-module__list--start { justify-content: flex-start; }
.topbar-module__list--end { justify-content: flex-end; }

.topbar-module__item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.topbar-module__icon { opacity: .7; }

.topbar-module__link {
    color: inherit;
    text-decoration: none;
}

.topbar-module__link:hover,
.topbar-module__link:focus {
    text-decoration: underline;
}

.topbar-module--light { background: #f6f8fb; color: #4a5568; }
.topbar-module--dark { background: #0b1f3a; color: rgba(255, 255, 255, .82); border-bottom-color: rgba(255, 255, 255, .12); }
.topbar-module--brand { background: var(--site-primary, #0b1f3a); color: #fff; border-bottom-color: rgba(255, 255, 255, .16); }

.region-header-region .web-shell-module-grid:has(> .module-wrapper > .topbar-module) {
    --bs-gutter-y: 0;
    margin-top: 0;
}

@media (max-width: 767.98px) {
    .topbar-module--desktop-only { display: none; }

    .topbar-module__list,
    .topbar-module__split {
        justify-content: center;
        gap: .25rem 1rem;
    }

    .topbar-module__split {
        flex-direction: column;
    }
}
