/* TopBar Styles */
#topbar {
    width: 100%;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

#topbar .topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

#topbar .topbar-left {
    flex: 1;
}

#topbar .topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

#topbar .topbar-right a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

#topbar .topbar-right a:hover {
    opacity: 0.8;
}

#topbar .topbar-right i {
    font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #topbar .topbar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    #topbar .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
