#start-menu {
    position: fixed;
    bottom: 36px;
    left: 0;
    width: 380px;
    background: white;
    border: 2px solid #0054E3;
    border-radius: 8px 8px 0 0;
    box-shadow: 2px -2px 10px rgba(0,0,0,0.3);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.start-menu-user {
    background: linear-gradient(
        180deg,
        #1E5BB8 0%,
        #1546A0 50%,
        #0D3288 100%
    );
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    border-radius: 6px 6px 0 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #888 0%, #aaa 50%, #888 100%);
    border-radius: 4px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.user-avatar::before {
    content: '👤';
}

.start-menu-body {
    display: flex;
    flex: 1;
}

.start-menu-left {
    background: white;
    flex: 1;
    padding: 6px 0;
    overflow-y: auto;
    max-height: 380px;
}

.start-menu-right {
    background: #D3E5FA;
    width: 160px;
    padding: 8px 4px;
    border-left: 1px solid #B8D0F0;
    overflow-y: auto;
    max-height: 380px;
}

.start-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 11px;
    color: #000;
}

.start-menu-item:hover {
    background: #316AC5;
    color: white;
}

.start-menu-item:hover .sm-desc {
    color: rgba(255,255,255,0.7);
}

.start-menu-right .start-menu-item {
    padding: 4px 8px;
}

.sm-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.help-icon-sm::before { content: '❓'; }
.search-icon-sm::before { content: '🔍'; }
.run-icon-sm::before { content: '⌨️'; }
.shutdown-icon-sm::before { content: '🔴'; }

.sm-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sm-title {
    font-weight: bold;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sm-desc {
    font-size: 10px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.start-menu-separator {
    height: 1px;
    background: #D6D2C2;
    margin: 4px 10px;
}

.all-programs {
    margin-top: 4px;
}

.all-programs .sm-title {
    font-size: 12px;
    font-weight: bold;
}

.start-menu-right .start-menu-item span {
    font-size: 11px;
}
