/* Startmenu Component CSS */

.startmenu {
    min-width: 200px;
}

.startmenu-header {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 14px;
}

.startmenu-logo {
    width: 24px;
    height: 24px;
}

.startmenu-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
}

.startmenu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    cursor: pointer;
}

.startmenu-item:hover:not(.disabled) {
    background: #000080;
    color: #fff;
}

.startmenu-item.disabled {
    color: #808080;
    cursor: default;
}

.startmenu-icon {
    width: 16px;
    height: 16px;
}

.startmenu-divider {
    height: 1px;
    margin: 4px 8px;
    background: #808080;
}
