body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Reines CSS-Wallpaper im macOS Style (keine externen Bilder nötig) */
    background: radial-gradient(circle at top right, #ff2e93 0%, #ff8933 25%, #170068 70%, #000000 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

[v-cloak] {
    display: none !important;
}

#mac-os {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

/* === TOP MENÜLEISTE === */
.mac-topbar {
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
}

.glass-topbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-left {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: default;
}

.topbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: default;
}

.mac-workspace {
    flex: 1;
    position: relative;
}