/* ===== Startmenü ===== */
#startMenu {
    position: absolute;
    left: 12px;
    bottom: 62px;
    width: 320px;
    max-height: 480px;
    background: var(--bg-panel);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 4500;
    animation: menuIn .18s ease both;
}

#startMenu.visible { display: flex; }

@keyframes menuIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

#startSearch {
    margin: 14px;
    padding: 10px 14px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

#startSearch:focus { border-color: var(--accent); }

#startApps {
    flex: 1;
    overflow-y: auto;
    padding: 0 8px 8px;
}

.start-app {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--text);
    padding: 10px 12px;
    font-size: 14px;
    text-align: left;
}

.start-app:hover { background: var(--bg-hover); }

.start-app .glyph { font-size: 22px; }

.start-app small {
    display: block;
    color: var(--text-dim);
    font-size: 11.5px;
}

.start-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
}

#startFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.start-user { color: var(--text-dim); }

#startFooter button {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 17px;
    padding: 5px 9px;
    border-radius: 6px;
}

#startFooter button:hover {
    background: var(--bg-hover);
    color: var(--accent);
}
