/* Simple Topbar Styles */
.topbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid #444;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1000;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
}

.topbar-left {
    color: #ccc;
}

.topbar-welcome {
    font-weight: 500;
    color: #f0f0f0;
}

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

.topbar-user {
    color: #4CAF50;
    font-weight: 500;
    margin-right: 8px;
}

.topbar-btn {
    display: inline-block;
    padding: 4px 8px;
    text-decoration: none;
    font-weight: normal;
    font-size: 13px;
    color: #ccc;
    transition: color 0.3s ease;
}

.topbar-login {
    color: #ccc;
}

.topbar-login:hover {
    color: #fff;
    text-decoration: none;
}

.topbar-register {
    color: #ccc;
}

.topbar-register:hover {
    color: #fff;
    text-decoration: none;
}

.topbar-logout {
    color: #ccc;
}

.topbar-logout:hover {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .topbar-left {
        order: 2;
    }
    
    .topbar-right {
        order: 1;
        justify-content: center;
    }
    
    .topbar-welcome {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 6px 0;
    }
    
    .topbar-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .topbar-right {
        gap: 8px;
    }
}