/* Topbar Styles */
.topbar {
    background: var(--primary, #1abdb8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    margin: 0;
    width: 100%;
}

.topbar-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
}

.topbar-item i {
    font-size: 14px;
    flex-shrink: 0;
}

.topbar-text {
    line-height: 1.4;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Mobile Topbar - Sadece uyarı mesajı */
.topbar-mobile-only {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .topbar {
        display: none;
    }
    
    .topbar-mobile-only {
        display: block;
        background: var(--primary, #1abdb8);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 20px;
        text-align: center;
    }
    
    .topbar-mobile-only .topbar-item {
        justify-content: center;
        color: #ffffff;
        font-size: 13px;
    }
}

