/* Start Menu Styling - Windows 98 Style */
.start-menu {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 200px;
    background: linear-gradient(to bottom, #c6c6c6 0%, #c0c0c0 50%, #b8b8b8 100%);
    border: 1px solid #808080;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), inset 1px 1px 0 #ffffff;
    z-index: 2000;
    display: none;
    border-radius: 2px;
}

.start-menu.show {
    display: block;
}

.start-menu-header {
    height: 24px;
    background: linear-gradient(90deg, #0080ff 0%, #0060d0 50%, #004080 100%);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #808080;
}

.start-menu-items {
    padding: 2px 0;
}

.start-menu-item {
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    cursor: pointer;
    gap: 8px;
}

.start-menu-item:hover {
    background: linear-gradient(to right, #0080ff 0%, #0060d0 100%);
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.start-menu-item img {
    width: 16px;
    height: 16px;
}

.start-menu-separator {
    height: 1px;
    background: var(--win95-dark-gray);
    margin: 2px 8px;
    border-bottom: 1px solid var(--win95-light-gray);
}

.start-menu-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 180px;
    background: linear-gradient(to bottom, #c6c6c6 0%, #c0c0c0 50%, #b8b8b8 100%);
    border: 1px solid #808080;
    border-top-color: #dfdfdf;
    border-left-color: #dfdfdf;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), inset 1px 1px 0 #ffffff;
    display: none;
    border-radius: 2px;
}

.start-menu-item.has-submenu::after {
    content: '▶';
    margin-left: auto;
    font-size: 8px;
}

.start-menu-item:hover .start-menu-submenu {
    display: block;
}

.start-menu-programs {
    max-height: 300px;
    overflow-y: auto;
}

.start-menu-footer {
    border-top: 1px solid var(--win95-dark-gray);
    padding: 2px 0;
}

.start-menu-footer .start-menu-item {
    font-weight: bold;
}